Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有每个字段中的列名包含冒号的数据(例如“数据:年龄”)。这弄乱了我的 d3 函数,比如选择数据方法。例如,这不起作用:
.data(data, function(d) { return d.data:age; })
有人对解决此问题的最佳方法有建议吗?用 \ 转义并不能解决问题。我无法更改数据馈送中的列名。
非常感谢!
您还可以通过访问属性[],即d['data:age']。
[]
d['data:age']