ajax接受json浏览器显示xml解析错误:格式不佳?

用火狐在本机上测试的ajax
https://img2.mukewang.com/5c1709ee0001199603050020.jpg

ajax:

     (function(){

         for(let selectPage = 1; selectPage <= pagesNumber; selectPage++ ) {

             if(selectPage != page) {

                 btn[selectPage].onclick = function(){

                     var result = $.ajax({

                         url: './something.json',    //  :./asset/host_last

                         data: {"selectPage": selectPage},

                         dataType: 'JSON',

                         type: 'get',

                         success: function(){

                             console.log("success");

                         }

                     });

                     console.log(result.responseText);

                 };

             }

         }

     })();

something.json:

{

    "IP地址":"something",

    "主机名":"something",

    "产品":"something",

    "应用":"something",

    "机柜编号":"something",

    "使用状态":"something",

    "备注":"something"

}


互换的青春
浏览 1225回答 1
1回答

繁星淼淼

file协议,请别这么使用,你得json是正确的,但是如果你使用file协议,不是http协议,那么响应头信息你应该看看,虽然请求头是JSON,你可以试一试跑一下http协议&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; &nbsp; |&nbsp; &nbsp; |&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)_)&nbsp; )_)&nbsp; )_)&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; )___))___))___)\&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;)____)____)_____)\\&nbsp;&nbsp; &nbsp; &nbsp;_____|____|____|____\\\__&nbsp;--------- /---------&nbsp;^^^^^ ^^^^^ ^^^^ ^^^^^^^ ^^^^^ ^^^
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript