gpt4 book ai didi

typescript - 如何在 Foundry Functions 中拥有灵活的分组列?

转载 作者:行者123 更新时间:2023-12-05 01:52:54 24 4
gpt4 key购买 nike

在我的 Workshop 应用程序中,我想要一个带有可变 x 轴的条形图。下拉小部件将用于选择所需的 x 轴。

为此,我正在编写一个 TypeScript 函数,它将返回将提供给图表小部件的数据。

我写了下面的函数:

@Function()
public async flexibleCounter2DimensionTest(
objects: ObjectSet<Data>,
xaxis : string ): Promise<TwoDimensionalAggregation<string>> {
return objects
.groupBy(val => val[xaxis].topValues())
.count()
}

xaxis 参数将定义要执行分组的列名。

我在 Foundry Functions 中努力做到这一点,我总是在编译时收到以下错误:

{"stdout": "src/hospital_provider_analysis.ts(170,9): error TS2322: Type 'TwoDimensionalAggregation<BucketKey, number>' is not assignable to type 'TwoDimensionalAggregation<string, number>'.\n Type 'BucketKey' is not assignable to type 'string'.\n Type 'false' is not assignable to type 'string'.\nsrc/hospital_provider_analysis.ts(171,33): error TS7053: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'BucketableProperties'.\n No index signature with a parameter of type 'string' was found on type 'BucketableProperties'.\n","stderr": ""}

关于如何解决这个问题有什么想法吗?

最佳答案

Typescript 类型系统的一些更强大的部分允许我们指定此聚合函数的类型安全版本。我在下面的第 1 部分中详细介绍了一种方法。

当公开这个类型安全的聚合函数时,我们需要执行一些额外的检查,因为 Functions 目前不支持 union types (请参阅 Palantir 文档中的“函数 API:输入和输出类型”)。我在下面的第 2 部分中列出了我的代码。

第 1 部分:类型安全的聚合

首先,我们列出所有我们想要分组的属性 API 名称作为一个新的 union typeliteral types .这些应该是您通常用来访问函数中这些属性的 API 名称。

type AggregatableStringProperties = "propertyA" | "propertyB" | ...;

现在,我们可以定义一个类型安全的聚合函数,它接受一个对象集以及要聚合的属性(AggregatableStringProperties 中的属性):

private async flexibleCounter2DimensionTestImpl(
objects: ObjectSet<Data>,
xaxis: AggregatableStringProperties,
) : Promise<TwoDimensionalAggregation<string>> {
return objects
.groupBy(val => val[xaxis].topValues())
.count();
}

第 2 部分:将其公开为 @Function()

使用我们在第 1 部分 中定义的类型安全聚合函数,我们现在可以使用 type assertions 公开它.在下面的代码中,我添加了一些可选逻辑来为该函数的用户提供有用的调试信息。

@Function()
public async flexibleCounter2DimensionTest(
objects: ObjectSet<Data>,
xaxis : string
): Promise<TwoDimensionalAggregation<string>> {
const xaxis_t = xaxis as AggregatableStringProperties;
if (Data.properties[xaxis_t] === undefined || Data.properties[xaxis_t].baseType.type !== "string") {
throw new UserFacingError("xaxis argument ('" + xaxis + "') is not a string property of the Data object");
}
return this.flexibleCounter2DimensionTestImpl(objects, xaxis_t);
}

关于typescript - 如何在 Foundry Functions 中拥有灵活的分组列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71325853/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com