如何将 JSON 文件从本地文件系统加载到 javascript 对象中?
类似于 jQuery 的东西:
$.getJSON( "ajax/test.json", function( data ) {
// data contains javascript object
});
如何将 JSON 文件从本地文件系统加载到 javascript 对象中?
类似于 jQuery 的东西:
$.getJSON( "ajax/test.json", function( data ) {
// data contains javascript object
});
正如官方论坛中的回答,您可以拨打以下电话cc.loader.loadJson
:
cc.loader.loadJson("res/example.json", function(error, data){
cc.log(data); //data is the json object
});
当文件完成加载时,您作为参数传递的函数将被回调。
研究这个我发现以下(不完整)解决方案:
var loadJSON = function(url, cb) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState==3 && xhr.status==200) {
cb(null,JSON.parse(xhr.responseText));
}
}
xhr.open("GET", url, true);
xhr.send(null);
};
// read json file with words
loadJSON("res/words/dewords.words.json", function(err, text) {
if( !err ) {
muprisLayer.words = text;
}
});