0
我有在PhoneGap的使用jQuery的問題
,問題是當我加載使用 $.get("file.json")
,通常它會返回序列化爲對象中的所有數據.json
文件,但在我的應用我只是弄扁平的字符串。
那麼最新情況如何?手機缺失是否爲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;
});
它的工作:),但我不得不這樣做是這樣的: $獲得( 「file.json」 功能(數據){}, 「JSON」); – winthers