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


TypeScript Model.findOne方法代碼示例

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


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

示例1: 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

示例2: findByUsername

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

示例3: findById

 findById (idItem: number, callback: (error: any, result: any) => void) {
     this.schema_model.findOne({
         where: {
             id: idItem
         }
     })
         .then((data) => {
             return callback(null, data);
         })
         .catch((error) => {
             return callback(error, null);
         });
 }
開發者ID:pmatam,項目名稱:nodejs,代碼行數:13,代碼來源:base_repository.ts

示例4: removeSetting

 /**
  * Remove setting.
  * @param context
  * @param setting key or setting instance.
  */
 public async removeSetting (context: any, setting: Setting | string): Promise<any> {
   let instance: Instance<any> = await this.settingModel.findOne({
     where: { $and: [
       {context: { $eq: this.getContextString(context) }},
       {key: { $eq: (typeof setting === 'string' ? setting : (setting as Setting).key) }}
     ]}
   });
   if (instance) {
     await instance.destroy();
     return true;
   }
   return false;
 }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:18,代碼來源:SettingManager.ts

示例5: replaceSetting

  /**
   * Replace setting.
   * @param context
   * @param setting
   */
  public async replaceSetting (context: any, setting: Setting): Promise<any> {
    let instance = await this.settingModel.findOne({
      where: { $and: [
        {context: { $eq: this.getContextString(context) }},
        {key: { $eq: setting.key }}
      ]}
    });
    if (! instance) throw new Error('Setting key is not yet defined in the context store! (\''+setting.key+'\')');

    instance.set(setting);

    await instance.save();
  }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:18,代碼來源:SettingManager.ts

示例6: setSetting

  /**
   * Set setting value.
   * @param context
   * @param key
   * @param value
   */
  public async setSetting (context: any, key: string, value: any): Promise<any> {
    let setting = await this.settingModel.findOne({
      where: { $and: [
        {context: { $eq: this.getContextString(context) }},
        {key: { $eq: key }}
      ]}
    });

    if (! setting) {
      throw new Error('Setting key is not yet defined in the context store!');
    }

    setting.set('value', value);
    await setting.save();
  }
開發者ID:tomvlk,項目名稱:ManiaJS,代碼行數:21,代碼來源:SettingManager.ts

示例7: 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


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