本文整理匯總了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;
}
}
示例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 || {}),
};
}
示例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));
}
}
示例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
};
}
示例5:
serverGroups.forEach(serverGroup => serverGroup.stringVal =
jsonUtilityService.makeSortedStringFromAngularObject(serverGroup, ['executions', 'runningTasks']));