gpt4 book ai didi

c# - 给 JSON 对象什么类型

转载 作者:搜寻专家 更新时间:2023-10-30 21:07:32 25 4
gpt4 key购买 nike

我有以下表格

 using (Ajax.BeginRouteForm(
...
new AjaxOptions
{
HttpMethod = "POST",
OnFailure = "OnFailure",
OnSuccess = "OnSuccess"
}))
{
..,.
}

我在 TypeScript 文件中实现了 OnSuccess 函数。我正在尝试使此功能更符合 TypeScript 风格。目前我有这个

function OnSuccess(data: what type goes here?) {
...
// use data.SomeValue here
...
}

问题是我应该说数据是什么类型,这样我仍然可以以某种方式使用 data.SomeValue?

最佳答案

最好的方法是使用接口(interface),因为您对返回对象的结构进行了明确断言,并非常清楚地传达了回调期望的内容。

export interface IOnSuccessArgs {
propertyA: string;
propertyB: number;
}


function OnSuccess(data: IOnSuccessArgs): void {
// ... data has propertyA and propertyB

}

关于c# - 给 JSON 对象什么类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21262236/

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