本文整理汇总了TypeScript中@hpcc-js/util.hashSum函数的典型用法代码示例。如果您正苦于以下问题:TypeScript hashSum函数的具体用法?TypeScript hashSum怎么用?TypeScript hashSum使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了hashSum函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: hash
hash(): string {
return hashSum({
label: this.fieldID(),
aggrType: this.aggrType(),
aggrColumn: this.aggrColumn()
});
}
示例2: update
update(domNode, element) {
super.update(domNode, element);
const hash = hashSum({
wsWorkunitsUrl: this.baseUrl(),
wuid: this.wuid(),
resultName: this.resultName(),
sequence: this.sequence(),
logicalFile: this.logicalFile()
});
if (this._prevHash !== hash) {
this._prevHash = hash;
const result = this.calcResult();
if (result) {
result.fetchXMLSchema().then((schema) => {
const store = new Store(result, schema);
this._dgrid.set("columns", store.columns());
this._dgrid.set("collection", store);
});
}
}
}
示例3: hash
hash(): string {
return hashSum({
limit: this.rows()
});
}