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


TypeScript Sequelize.Model類代碼示例

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


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

示例1: findOrCreateUserBySlackId

export function findOrCreateUserBySlackId(User: Model<any, any>, slackId: string, type: UserType): Promise<any> {
  return User.findOrCreate({
      where: {slackId},
      defaults: {type}
    })
    .then(results => results[0]);
}
開發者ID:hxjp,項目名稱:simekiri-bot,代碼行數:7,代碼來源:util.ts

示例2: isDefined

 public async isDefined (context: any): Promise<boolean> {
   let settings = await this.settingModel.findAndCount({
     where: {
       context: { $eq: this.getContextString(context) }
     }
   });
   return settings && settings.count > 0;
 }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:8,代碼來源:SettingManager.ts

示例3: getAllSettings

  /**
   * Get all plugin settings.
   * @param context Plugin class instance or app instance for global.
   */
  public async getAllSettings (context: any): Promise<Setting[]> {
    let settings: any[] = await this.settingModel.find({
      where: { context: { $eq: this.getContextString(context) } }
    });

    return settings.map((setting) => {
      return this.parseSetting(setting);
    });
  }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:13,代碼來源:SettingManager.ts

示例4: defineSettings

  /**
   * Define settings for context (plugin or core/app).
   * @param context
   * @param schema
   */
  public async defineSettings (context: any, schema: SettingSchema) {
    context = this.getContextString(context);

    // Prepare all settings in database.
    for (let setting of schema.settings) {
      setting.value = null;
      await this.settingModel.create(setting);
    }
  }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:14,代碼來源:SettingManager.ts

示例5: getSetting

 /**
  * Get setting.
  * @param context
  * @param key
  */
 public async getSetting (context: any, key?: string): Promise<Setting> {
   let setting = await this.settingModel.findOne({
     where: { $and: [
       {context: { $eq: this.getContextString(context) }},
       {key: { $eq: key }}
     ]}
   });
   return this.parseSetting(setting);
 }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:14,代碼來源:SettingManager.ts

示例6: boot

  public async boot() {
    let Map: Model<any,any> = this.app.models['Map'];

    // Get all maps on server, sync with database.
    let mapList: any[] = await this.app.serverFacade.client.gbx.query('GetMapList', [-1, 0]);

    // Clear current list first.
    this.list = {};

    // TODO: Define interfaces for the maniaplanet return values.
    for (let data of mapList) {
      let exists = await Map.findOne({where: {uid: data.UId}});
      if (! exists) {
        let map = await Map.create({
          uid: data.UId,
          name: data.Name,
          author: data.Author,
          environment: data.Environnement
        });

        // Save created database model to local list.
        this.list[data.UId] = map;

      } else {
        // Name update?
        if (exists.name !== data.Name) {
          exists.set('name', data.Name);
          let map = await exists.save();
          this.list[data.UId] = map;
        } else {
          this.list[data.UId] = exists;
        }
      }
    }

    // The sync with db is done, now check the current map and set it in the this.current
    let currentMapInfo = await this.app.serverFacade.client.gbx.query('GetCurrentMapInfo', []);
    if (currentMapInfo) {
      this.current = this.list[currentMapInfo.UId];
    }
  }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:41,代碼來源:Maps.ts

示例7: callback

 create(item: T, callback: (error: any, result: any) => void) {
     this.schema_model.create(item)
         .then((data) => {
             return callback(null, data);
         })
         .catch((error) => {
             return callback(error, null);
         });
 }
開發者ID:pmatam,項目名稱:nodejs,代碼行數:9,代碼來源:base_repository.ts


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