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


TypeScript datasource.DataSource類代碼示例

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


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

示例1: constructor

 constructor(serviceName: string) {
   this.dataSource = Container.instance.get(DataSource);
   this.dataService = this.dataSource.getService(serviceName);
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:4,代碼來源:object-manager.ts

示例2: constructor

 constructor(private bm: BillingsManager, private ds: DataSource) {
   this.lbService = ds.getService('leistungsblock')
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:3,代碼來源:leistungsblock-model.ts

示例3: constructor

 constructor(private dc: DialogController, ds: DataSource) {
   this.briefeService = ds.getService("briefe");
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:3,代碼來源:show-templates.ts

示例4: loginAs

 public loginAs(name: string, pwd: string) {
   this.ds.login(name, pwd).then(user => {
     if (user) {
       this.session.setUser(user);
       this.router.navigateToRoute("dispatch");
     } else {
       alert("Interner Fehler: Login misslungen");
     }
   });
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:10,代碼來源:stage1.ts

示例5: doLogin

 public doLogin() {
   this.ds.login(this.username, this.password).then(user => {
     if (user) {
       this.session.setUser(user);
       this.router.navigateToRoute("dispatch");
     } else {
       alert("Username oder Passwort falsch");
     }
   });
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:10,代碼來源:stage1.ts

示例6:

 return this.ds.metadata().then(meta => {
   this.testmode = meta.testing;
   return this.ds.login().then(user => {
     if (user) {
       this.session.setUser(user);
       return this.router.navigateToRoute("dispatch");
     } else {
       return true;
     }
   });
 });
開發者ID:rgwch,項目名稱:webelexis,代碼行數:11,代碼來源:stage1.ts

示例7: login

 public async login(username?: string, pwd?: string, persist?: boolean) {
   const user: UserType = await this.ds.login(username, pwd);
   if (user) {
     user["type"] = "user";
     this.we.selectItem(user);
     this.currentUser = user;
   } else {
     this.we.logout();
     this.currentUser = undefined;
   }
   return this.currentUser;
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:12,代碼來源:session.ts

示例8: logout

 public async logout() {
   this.currentUser = undefined;
   this.we.logout();
   return this.ds.logout();
 }
開發者ID:rgwch,項目名稱:webelexis,代碼行數:5,代碼來源:session.ts


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