當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。