我已经在react中创建了一个类组件,并且在映射时需要在render函数中传递props,但是出现以下错误TypeError: Cannot read property 'onSelect' of undefined
下面是我的组件
class SelectLanguage extends Component {
render() {
let filterbrands = this.props.tvfilter.brand
const filteredList = this.filterItems();
if (filterbrands) {} else {}
return (
<div className="filter-options">
{filteredList &&
filteredList.map(item => (
<dl>
<dt className="mb-2">{item.title}</dt>
<input type="search" onChange={this.onSearchInputChange} className="search mb-2" placeholder="Search by Brand" />
{item.options.slice(0,this.state.itemsToShow).map(catname => (
<dd
key={catname.catgeory_name}
className="mb-0"
>
<a href="#" onClick={props.onSelect.bind(null, item)}>{catname.catgeory_name}</a>
</dd>
))}
</dl>
))}
<a className="btn btn-primary expandbutton" onClick={this.showMore}>{this.state.expanded ? (
<span>[ - less ]</span>
) : (
<span>[ + more ]</span>
)
}</a>
</div>
);
}
// PropTypes for SelectedLanguage
SelectLanguage.PropTypes = {
selectedLanguage: PropTypes.string.isRequired,
onSelect: PropTypes.func.isRequired
};
}
问题出在这个锚点<a href="#" onClick={props.onSelect.bind(null, item)}>{catname.catgeory_name}</a>
注意:如果我使用的是函数而不是像这样的类function SelectLanguage(props) {
答案 0 :(得分:0)
我相信您在将功能设置为之前会丢失“ this”
<a href="#" onClick={this.props.onSelect.bind(null, item)}>
答案 1 :(得分:0)
在props.onSelect之前缺少“ this”;
您可以在渲染顶部定义道具以提高可读性;
例如const {onSelect } = this.props
答案 2 :(得分:0)
请更改此代码:
<a href="#" onClick={props.onSelect.bind(null, item)}>{catname.catgeory_name}</a>
到
<a href="#" onClick={this.props.onSelect.bind(null, item)}>{catname.catgeory_name}</a>