我在phonegap中遇到jQuery问题,问题是当我使用加载.json
文件
时$.get("file.json")
,通常它会返回所有序列化为对象的数据,但在我的应用程序中我只得到一个扁平字符串。
发生什么了?phonegap 是否缺少 json 或的 mime 类型?
$.get("file.json").done(function(data){
typeof data // string
// I can fix it like this, but I'll rather have the default behavior
// of jquery.
data = (typeof data == "string") ? JSON.parse(data) : data;
});