我从另一个网址获取json。 现在,我在react组件中从中渲染一些项目:
render() {
const { users } = this.props;
return (
<div>
<ul>
{users.map(item => {
item.firstName = item.firstName === null ? '' : item.firstName;
item.lastName = item.lastName === null ? '' : item.lastName;
return <li key={item.id}>
<Link to={{ pathname: `/profile/${item.firstName}-${item.lastName}_${item.id}`}}>{`${item.firstName}-${item.lastName}_${item.id}`}</Link>
</li>;
})}
</ul>
</div>
);
}
但是我需要它不是<ul>
列表,而是<xml>
列表。
我看到了this one
但是对我没有帮助。有什么想法吗?