假设生成的配置文件如下,配置文件名为config.json.
[{"id":1,"name":"test1"},{"id":2,"name":"test2"}]
那么配置文件中有两行数据
那么解析文件可以这么写
var testFile = []; if(fileUtil.isFileExist("config.json"){ testFile = fileUtil.getStringFromFile("config.json"); } var arr = JSON.parse(testFile); for(var j = 0; j < arr.length; j++){ cc.log("name:"+arr[j].name); }原文链接:https://www.f2er.com/cocos2dx/346372.html