我有一个循环并抓取对象中一年属性的函数。我试图在列表视图的.play-button {
background-color: rgb(80,80,80);
border: 2px solid rgb(136,136,136);
width: 60px;
height: 60px;
position: absolute;
border-radius: 30px;
top: 50%;
left: 50%;
margin: -30px;
cursor: pointer;
}
道具中渲染它,但是我收到了这个错误。
title
我的功能
Error: raw text "1997" must be wrapped in an explicit <text> component
我在stackoverflow上看到类似的东西,但它与空格React Native error: Raw " " must be wrapped in an explicit <Text> Component
有关如何摆脱此错误?
谢谢!
答案 0 :(得分:0)
错误发生在ListItem
组件中,而不是此处。无论您何时拨打<Text>...</Text>
,都要确保年份包含在props.title
。