gpt4 book ai didi

javascript - typescript |与端点的接口(interface)

转载 作者:行者123 更新时间:2023-12-02 23:42:38 26 4
gpt4 key购买 nike

我需要在 TS 中构造一个接口(interface)作为我的 dto 的一部分,它具有以下属性。

interface IFace {
something.else.more: string;
something.else.thing: string;
another.thing.here: number;
}

但是我遇到了一些错误。所以,这就是我所做的:

    interface IFace {
"something.else.more": string;
"something.else.thing": string;
"another.thing.here": number;
}

我想知道我写得是否正确。如果不是,这个dto应该怎么写?

最佳答案

JavaScript 中要求任何不包含默认字符集(字母和数字、$_)的对象键或变量名称都必须进行字符串化.

所以是的,这是正确的方法:

interface IFace {
"something.else.more": string;
"something.else.thing": string;
"another.thing.here": number;
}

关于javascript - typescript |与端点的接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56001605/

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