gpt4 book ai didi

javascript - 在同一对象的函数中访问变量

转载 作者:行者123 更新时间:2023-11-28 17:49:09 26 4
gpt4 key购买 nike

{
title: "This is title of item 1",
desc: "This is description of 1",
state: "inactive",
toggleState: () => {
console.log('title: ', title)
}
}

这是 Typescript 中的一个对象。我想在该对象的函数toggleState() 中访问该对象的标题变量。但我收到错误为

[ts]: Cannot find name 'title'

这可能吗?如果可以,那么如何实现呢?

最佳答案

这有效吗?

var obj = {
title: "This is title of item 1",
desc: "This is description of 1",
state: "inactive",
toggleState: function() {
console.log('title: ', this.title)
}
}.toggleState();

关于javascript - 在同一对象的函数中访问变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45953352/

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