react+antd里面如何将Json对象转为为antd中Table可以识别的Columns和dataSource那种类型.
const columns = [{
title: '车牌号码',
dataIndex: 'hphm',
key: 'hphm',
render: text => <a href="#">{text}</a>,
}, {
title: '出口通道',
dataIndex: 'Excdmc',
key: 'Excdmc',
}, {
title: '取消时间',
dataIndex: 'gxsj',
key: 'gxsj',
}, {
title: '取消人',
dataIndex: 'Admin_name',
key: 'Admin_name',
}];
const data = [{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
}, {
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
}, {
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
}];
以上是antd中Table的Columns和dataSource属性可接受数据类型(比较菜,只能这么描述),我们使用时
"<Table columns={columns} dataSource={data} /Table>", 现在的问题我从后台拿到了一个Json字符串或Json对象,假设是个Json字符串var s = [{"name":"tank","total":"100"},{"name":"zhang","total":"23"},{"name":"hao","total":"325"}],我怎么把字符串s转化为以上columns或data这种类型,有好点的方法吗,没有粗糙点的也行。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dataSource
中的key
和columes
中的dataIndex
对应上就可以了。拿你的数据说:
ajax里
response.json()