>我有一个函数,可以循环并抓取对象中一年属性的年份。我正在尝试在我的列表视图的title
道具中呈现它,但出现此错误。
Error: raw text "1997" must be wrapped in an explicit <text> component
我的函数
renderRow = (year) => {
return (
<ListItem
key={year.id}
title={year.year}
onPress={() => this.props.dispatch(storeUserYear(year))}
underlayColor='#eceeef'
/>
)
}
我在堆栈溢出上看到了类似的东西,但它与空格有关 React 本机错误:原始" "必须包装在显式<文本>组件中文本>
如何摆脱此错误?
谢谢!
错误出在ListItem
组件中,而不是此处。确保一年被包裹在<Text>...</Text>
中,无论你在哪里打电话props.title
。