如何在React组件中制作XML

时间:2018-09-06 09:00:23

标签: javascript xml reactjs

我从另一个网址获取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

this one

但是对我没有帮助。有什么想法吗?

0 个答案:

没有答案