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


TypeScript json.utility.service.JsonUtilityService類代碼示例

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


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

示例1: constructor

  constructor(public stage: any,
              private jsonUtilityService: JsonUtilityService,
              private $uibModal: IModalService,
              private pipelineConfig: PipelineConfigProvider) {
    'ngInject';
    this.methods = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE'];

    this.viewState = {
      waitForCompletion: this.stage.waitForCompletion || false,
      statusUrlResolution: this.stage.statusUrlResolution || 'getMethod'
    };

    this.command = {
      payloadJSON: this.jsonUtilityService.makeSortedStringFromObject(this.stage.payload || {}),
    };

    this.stage.statusUrlResolution = this.viewState.statusUrlResolution;

    const stageConfig = this.pipelineConfig.getStageConfig(this.stage);
    if (stageConfig && stageConfig.configuration) {
      this.preconfiguredProperties = stageConfig.configuration.preconfiguredProperties || [];
      this.noUserConfigurableFields = stageConfig.configuration.noUserConfigurableFields;
      this.viewState.waitForCompletion = stageConfig.configuration.waitForCompletion || this.viewState.waitForCompletion;
    }
  }
開發者ID:jcwest,項目名稱:deck,代碼行數:25,代碼來源:webhookStage.ts

示例2: constructor

  constructor(public stage: any,
              private jsonUtilityService: JsonUtilityService) {
    this.methods = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE'];

    this.viewState = {
      waitForCompletion: this.stage.waitForCompletion || false,
      statusUrlResolution: this.stage.statusUrlResolution || 'getMethod'
    };

    this.command = {
      payloadJSON: this.jsonUtilityService.makeSortedStringFromObject(this.stage.payload || {}),
    };
  }
開發者ID:brujoand,項目名稱:deck,代碼行數:13,代碼來源:webhookStage.ts

示例3: logMutatingRequest

 private logMutatingRequest(config: IRequestConfig): void {
   if ($location.url() &&
       $location.url().includes('debug=true') &&
       ['POST', 'PUT', 'DELETE'].includes(config.method)) {
     $log.log(`${config.method}: ${config.url} \n`, this.jsonUtilityService.makeSortedStringFromObject(config.data));
   }
 }
開發者ID:robfletcher,項目名稱:deck,代碼行數:7,代碼來源:debug.interceptor.ts

示例4:

  public $onInit(): void {
    const copy = cloneDeepWith<IPipeline>(this.pipeline, (value: any) => {
      if (value && value.$$hashKey) {
        delete value.$$hashKey;
      }
      return undefined; // required for clone operation and typescript happiness
    });
    this.removeImmutableFields(copy);

    this.isStrategy = this.pipeline.strategy || false;
    this.command = {
      pipelineJSON: this.jsonUtilityService.makeSortedStringFromObject(copy),
      locked: copy.locked
    };
  }
開發者ID:brujoand,項目名稱:deck,代碼行數:15,代碼來源:editPipelineJsonModal.controller.ts

示例5:

 serverGroups.forEach(serverGroup => serverGroup.stringVal =
   jsonUtilityService.makeSortedStringFromAngularObject(serverGroup, ['executions', 'runningTasks']));
開發者ID:robfletcher,項目名稱:deck,代碼行數:2,代碼來源:serverGroup.dataSource.ts


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