gpt4 book ai didi

javascript - "this"在映射函数 Reactjs 中未定义

转载 作者:IT王子 更新时间:2023-10-29 02:44:01 26 4
gpt4 key购买 nike

我正在使用 Reactjs 编写菜单组件。

"use strict";

var React = require("react");
var Menus = React.createClass({

item_url: function (item,categories,articles) {
console.log('afdasfasfasdfasdf');
var url='XXX';
if (item.type == 1) {
url = item.categoryId == null ? 'javascript:void(0)' : path('buex_portal_browse_category', {slug: categories[item.categoryId].slug});
} else if (item.type == 2) {
url = item.articleId == null ? 'javascript:void(0)' : path('buex_portal_view_article', {slug: articles[item.articleId].slug, id: item.articleId});
} else {
url = item.url;
}
return url;
},

render: function () {
// console.log(this.props.menus); // return correctly
var menuElements = this.props.menus.map(function (item1) { // return fault : 'cannot read property 'props' of undefined '
return (
<div>
<li>
<a href={this.item_url(item1, this.props.categories, this.props.articles )}>{item1.name} // the same fault above
<i class="glyphicon glyphicon-chevron-right pull-right"></i>
</a>
<div class="sub-menu">
<div>
{item1._children.map(function (item2) {
return (
<div>
<h4>
<a href={this.item_url(item2, this.props.categories, this.props.articles)}>{ item2.name }</a>
</h4>
<ul>
{item2._children.map(function (item3) {
return (
<div><li><a href={this.item_url(item3, this.props.categories, this.props.articles) }>{ item3.name }</a></li></div>
);
})}
</ul>
</div>
);
})}
</div>
</div>
</li>
</div>
);
});

return (
<div class="menu">
<ul class="nav nav-tabs nav-stacked">
{menuElements}
</ul>
</div>
);
}
});

每当我在 map 函数中使用 'this' 时,它是未定义的,但在外面是没有问题的。

错误:

"Cannot read property 'props' of undefined"

谁帮帮我! :((

最佳答案

Array.prototype.map()使用第二个参数来设置映射函数中 this 所指的内容,因此将 this 作为第二个参数传递以保留当前上下文:

someList.map(function(item) {
...
}, this)

或者,您可以使用 ES6 arrow function自动保留当前的 ​​this 上下文:

someList.map((item) => {
...
})

关于javascript - "this"在映射函数 Reactjs 中未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30148827/

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