当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Expression.toJS方法代码示例

本文整理汇总了TypeScript中plywood.Expression.toJS方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Expression.toJS方法的具体用法?TypeScript Expression.toJS怎么用?TypeScript Expression.toJS使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在plywood.Expression的用法示例。


在下文中一共展示了Expression.toJS方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: return

 return (ex: Expression, env: Environment = {}) => {
   return Qajax({
     method: "POST",
     url: url + '?by=' + getSplitsDescription(ex),
     data: {
       version: version,
       dataCube: name,
       expression: ex.toJS(),
       timezone: env ? env.timezone : null
     }
   })
     .then(Qajax.filterSuccess)
     .then(Qajax.toJSON)
     .then(
       (res) => {
         return Dataset.fromJS(res.result);
       },
       (xhr: XMLHttpRequest): Dataset => {
         if (!xhr) return null; // This is only here to stop TS complaining
         var jsonError = JSON.parse(xhr.responseText);
         if (jsonError.action === 'reload') reload();
         throw new Error(jsonError.message || jsonError.error);
       }
     );
 };
开发者ID:djfwan,项目名称:pivot,代码行数:25,代码来源:ajax.ts

示例2: toJS

 public toJS(): DimensionJS {
   return {
     name: this.name,
     title: this.title,
     expression: this.expression.toJS(),
     kind: this.kind
   };
 }
开发者ID:coconutpalm,项目名称:pivot,代码行数:8,代码来源:dimension.ts

示例3: toJS

 public toJS(): SplitCombineJS {
   var js: SplitCombineJSFull = {
     expression: this.expression.toJS()
   };
   if (this.bucketAction) js.bucketAction = this.bucketAction.toJS();
   if (this.sortAction) js.sortAction = this.sortAction.toJS();
   if (this.limitAction) js.limitAction = this.limitAction.toJS();
   return js;
 }
开发者ID:RaviNK,项目名称:pivot,代码行数:9,代码来源:split-combine.ts

示例4: toJS

 public toJS(): DimensionJS {
   var js: DimensionJS = {
     name: this.name,
     title: this.title,
     expression: this.expression.toJS(),
     type: this.type
   };
   if (this.sortOn) js.sortOn = this.sortOn;
   return js;
 }
开发者ID:Ghostubborn,项目名称:pivot,代码行数:10,代码来源:dimension.ts

示例5: toJS

 public toJS(): DimensionJS {
   var js: DimensionJS = {
     name: this.name,
     title: this.title,
     expression: this.expression.toJS(),
     kind: this.kind
   };
   if (this.url) js.url = this.url;
   return js;
 }
开发者ID:07033320a,项目名称:pivot,代码行数:10,代码来源:dimension.ts

示例6: toJS

 public toJS(): DimensionJS {
   var js: DimensionJS = {
     name: this.name,
     title: this.title,
     expression: this.expression.toJS(),
     kind: this.kind
   };
   if (this.url) js.url = this.url;
   if (this.granularities) js.granularities = this.granularities.map((g) => { return granularityToJS(g); });
   return js;
 }
开发者ID:gerencio,项目名称:pivot,代码行数:11,代码来源:dimension.ts

示例7: return

 return (ex: Expression) => {
   return Qajax({
     method: "POST",
     url: url + '?by=' + getSplitsDescription(ex),
     data: {
       dataset: name,
       expression: ex.toJS()
     }
   })
     .then(Qajax.filterSuccess)
     .then(Qajax.toJSON)
     .then(
       (dataJS) => {
         return Dataset.fromJS(dataJS);
       },
       (xhr: XMLHttpRequest): Dataset => {
         throw new Error(JSON.parse(xhr.responseText).message);
       }
     );
 };
开发者ID:Ghostubborn,项目名称:pivot,代码行数:20,代码来源:executors.ts

示例8: return

 return (ex: Expression) => {
   return Qajax({
     method: "POST",
     url: url + '?by=' + getSplitsDescription(ex),
     data: {
       version: version,
       dataSource: name,
       expression: ex.toJS()
     }
   })
     .then(Qajax.filterSuccess)
     .then(Qajax.toJSON)
     .then(
       (dataJS) => {
         return Dataset.fromJS(dataJS);
       },
       (xhr: XMLHttpRequest): Dataset => {
         if (!xhr) return null; // This is only here to stop TS complaining
         var jsonError = JSON.parse(xhr.responseText);
         if (jsonError.action === 'reload') reload();
         throw new Error(jsonError.message);
       }
     );
 };
开发者ID:Rahul-Sindhu,项目名称:pivot,代码行数:24,代码来源:ajax.ts


注:本文中的plywood.Expression.toJS方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。