當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript core.Injectable函數代碼示例

本文整理匯總了TypeScript中@angular/core.Injectable函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript Injectable函數的具體用法?TypeScript Injectable怎麽用?TypeScript Injectable使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了Injectable函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: transform

@Injectable()
  /*
    Takes a value and makes it lowercase.
   */
  transform(value: string, args: any[]) {
   var c=Math.round(parseInt(value,10)-273.15);
   var f=Math.round(parseInt(value,10)*9/5-459.67);
 
   return `${c}°C `
  }
開發者ID:deepakrajendra,項目名稱:WeatherApp,代碼行數:10,代碼來源:Temperature.ts

示例2: ResourceODATAParams

export function ResourceODATAParams(params: ResourceODATAParamsBase) {
  const injectable = Injectable();
  const zuper = ResourceParams(params);

  return function (target: Type<Resource>) {
    injectable(target);
    zuper(target);
    target.prototype.getEntityName = function () {
      if (params.name) {
        return params.name;
      }
      return typeof params.entity === "string" ? params.entity : params.entity.name;
    };
  };
}
開發者ID:troyanskiy,項目名稱:ng2-resource-rest,代碼行數:15,代碼來源:ResourceODATA.ts

示例3: Injectable

import { Injectable, OnInit } from '@angular/core';
import { WebsocketService } from '.';
import { SocketOption } from '../model/SocketOption.model';

Injectable()
export class ProgressWebsocketService extends WebsocketService {

    constructor(){
        super(new SocketOption('/quartz-manager/progress', '/topic/progress'))
    }

}
開發者ID:fabioformosa,項目名稱:quartz-manager,代碼行數:12,代碼來源:progress.websocket.service.ts

示例4: new

export const injectable: InjectionDecorator = <TFunction extends new (x: any, ...args: any[]) => any>(target: TFunction) => Injectable()(target);
開發者ID:aluanhaddad,項目名稱:ng2-conventions-decorators,代碼行數:1,代碼來源:index.ts

示例5: Injectable

import { Injectable } from '@angular/core';

Injectable({
  providedIn: 'root'
})
export class WsmDataService {

}
開發者ID:kichkinproject,項目名稱:wsm-client,代碼行數:8,代碼來源:wsm-data.service.ts


注:本文中的@angular/core.Injectable函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。