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.
我有5个类别,每个类别有3个项目。
我有数组:
var myArray = ["Item1", "Item2", "Item3"];
从它创建 Json 而不对其进行硬编码的最简单方法是什么?
生产中的数组可以有数千个项目。
使用纯 JavaScript:
JSON.stringify(myArray);
您可以使用json.js与 <=IE7 兼容