Ajax with JQuery: 200 ok, but not “success”

前端 未结 3 979
耶瑟儿~
耶瑟儿~ 2021-02-04 22:27

I\'m facing the same issue, while trying for cross-domain request. Situation is strange, my data is getting loaded while hit the requested url directly on browser, the strange p

3条回答
  •  时光说笑
    2021-02-04 23:22

    try with

     console.log(data);
    

    with no slices.

    or, even better

     console.log(JSON.stringify(data.slice(0,100)));
    

    with JSON.stringify() (documented here) method you get a string wich is not parsed or checked for json validity.

    hope this helps.

提交回复
热议问题