关于PropTypes.arrayOf问题
来源:4-2 PropTypes 与 DefaultProps 的应用
Jamie1027
2018-08-14
TodoItem.propTypes = {
test:PropTypes.string.isRequired,
content:PropTypes.arrayOf(PropTypes.number,PropTypes.string),
delItem:PropTypes.func,
index:PropTypes.number
}
<TodoItem
content={123}
index={index}
delItem={this.handleItemDel}
/>
老师说content:PropTypes.arrayOf(PropTypes.number,PropTypes.string) 数字或者字符串,但是我写成content={123}为什么会报警告
这是什么原因?
写回答
1回答
-
Dell
2018-08-15
因为我讲的有点问题,你继续看下一节,我就纠正了
20
相似问题