javascript - ajax 擷取服務端的json資料出錯了,JSON.parse(xhr.responseText),,,?

來源:互聯網
上載者:User
html頁面:

無標題文檔

php頁面:

就是不能從服務端擷取到json資料,報錯如下:

SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data

求解

回複內容:

html頁面:

無標題文檔

php頁面:

就是不能從服務端擷取到json資料,報錯如下:

SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data

求解

header的設定不對,這樣設定輸出的是utf-8格式的html,
使用

header('Content-type: application/json');

這樣echo的資料即為json格式,
建議將要輸出的內容存進數組,在要輸出的地方使用

echo json_encode($array);

沒試過,你試試不要直接這麼寫,換個寫法,定義一個數組,然後json_encode()。

後端返回的格式不對

echo '{"code":"0","message":"該名字有人註冊"}'

格式不對,json裡面是雙引號的。
這種

echo '{"code":"0","message":"該名字有人註冊"}'

我在前台頁面把從服務端擷取到的結果輸出`if(xhr.readyState == 4){

        if(xhr.status == 200){            console.log(xhr.responseText);            console.log(JSON.parse(xhr.responseText));        }    }`

在控制台看到是這樣的(就是說xhr.responseText擷取有問題嗎?):

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.