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.
我最近开始使用easyUI树网格,默认情况下easyui使用json。任何人都可以为我提供一个示例,通过指向xml文件或URL的链接加载XML数据。
嗨,我认为您有数组格式的 XML 数据,然后您可以使用关联的数组创建 JSON 数据,然后使用
var Data=JSON.stringify(AssociatedArrayData); var finalData=JSON.parse(Data);
finalData 包含 json 格式的数据。