我有一个包含许多复选框的树表。每个复选框都存储结构本身。例如/root/entity_child/0/entity_child/1
. 从这些数据中,我想使用它并从我的 Json 数据中读取 Json 对象。
为了获得正确的数据,我需要 mydata.root.entity_child[0].entity_child[1] 之类的东西。但我不知道我应该如何应用我的原始数据(字符串)来获取我想要的数据。
比方说,我有一串,我/root/entity_child/0/entity_child/1
怎么能把它转换成mydata.root.entity_child[0].entity_child[1] in javascript?
有任何想法吗?