我有这样的东西
{
"title": "JSON",
"content": [
{
"item": "23",
"url":"ug.coml"
},
{
"item": "33",
"url":"tewts.com"
}
]
}
- 我想知道是否可以将字符串传递给map代码行。*
const pathstring=this.props.path; //this is equal to the string "content"
const block = skillSetData.pathstring.map ((data, index) => {
return (
<div>
<h3>{data.url}</h3>
</div>
)
})
1条答案
按热度按时间dfty9e191#
您可以使用Lodash中的get方法并使用字符串路径进行导航
有关详细信息,请访问https://lodash.com/docs/4.17.15#get