作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在按照有关受控输入的 React.js 在线教程进行操作,但我反复收到错误
TypeError: Cannot read property 'map' of undefined
import CallRow from "./CallRow";
import React from "react";
class SearchPage extends React.Component {
constructor() {
super();
this.state = {
search: "Level Up"
};
}
updateSearch(event) {
this.setState({ search: event.target.value.substr(0, 20) });
}
render() {
return (
<div>
<ul>
{this.props.calls.map(call => (
<CallRow call={call} key={call.id} />
))}
</ul>
<input
type="text"
value={this.state.search}
onChange={this.updateSearch.bind(this)}
/>
</div>
);
}
}
export default SearchPage;
最佳答案
好像是call prop undefined.
在映射 prop 值之前,检查它是否未定义。
请引用以下代码:
<ul>
{(this.props.calls || []).map(call => (
<CallRow call={call} key={call.id} />
))}
</ul>
关于javascript - 类型错误 : Cannot read property 'map' of undefined on React. js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57897520/
我是一名优秀的程序员,十分优秀!