在for循环中遍历javascript对象

发布于 2024-10-12 17:27:54 字数 309 浏览 1 评论 0原文

我想在对象本身中引用一个对象。我知道下面的说法是不对的。但什么是正确的方法呢?

当谷歌搜索此类问题时,搜索正确的关键字是什么?

for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: this.type + '="' + this.name +'"'  //<--- here

       }
    }

I want to refer to an object within the object itself. The following is not right, i know. But what is the right way?

And when googling for such problems, what would be the right keywords to search for?

for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: this.type + '="' + this.name +'"'  //<--- here

       }
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

天涯离梦残月幽梦 2024-10-19 17:27:54

尝试使用 class 的 JS 等效项来代替:

for (var key in eName) {
    var obj = eName[key];
    eName[key] = new CustomElement(obj);
}

...

function CustomElement(strData) {
    this.type = "id";
    this.name = strData.substr(1);
    this.html = this.type + '="' + this.name +'"';
}

Try using the JS equivalent for class instead:

for (var key in eName) {
    var obj = eName[key];
    eName[key] = new CustomElement(obj);
}

...

function CustomElement(strData) {
    this.type = "id";
    this.name = strData.substr(1);
    this.html = this.type + '="' + this.name +'"';
}
风情万种。 2024-10-19 17:27:54

Javascript 的 this 关键字 可能会帮助您理解确实意味着。您可能必须将其作为对象传递给函数。

The this keyword for Javascript might help you understand what this really means. You might have to pass it in as an object to the function.

空‖城人不在 2024-10-19 17:27:54

试试这个:

for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: ''  //<--- here

       }
eName[key].html = eName[key].type + '="' + eName[key].name +'"'

    }

Try this:

for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: ''  //<--- here

       }
eName[key].html = eName[key].type + '="' + eName[key].name +'"'

    }
聆听风音 2024-10-19 17:27:54
for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: function() { return this.type + '="' + this.name +'"' }

       }
    }

然后你会使用 eName[key].html()

for (var key in eName) {
       var obj = eName[key];
       eName[key] = {
        type: 'id',
        name: obj.substr(1),
        html: function() { return this.type + '="' + this.name +'"' }

       }
    }

Then you would use eName[key].html()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文