gpt4 book ai didi

javascript - Typescript 属性在类型 {} 上不存在

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

我在 Typescript 中有以下代码。为什么编译器会抛出错误?

var object = {};
Object.defineProperty(object, 'first', {
value: 37,
writable: false,
enumerable: true,
configurable: true
});
console.log('first property: ' + object.first);

js.ts(14,42): error TS2339: Property 'first' does not exist on type '{}'.

它与 documentation 中的代码片段相同mozilla(示例部分)。

最佳答案

使对象类型为任何:

var object: any = {};

关于javascript - Typescript 属性在类型 {} 上不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49467069/

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