美文网首页
axios访问服务端返回有时JSON,有时String

axios访问服务端返回有时JSON,有时String

作者: 寻找无名的特质 | 来源:发表于2023-10-23 05:41 被阅读0次

    使用axios访问服务端API时,发现有时返回的是JSON对象,有时返回的是String,当返回String时,需要在客户端调用JSON.parse。不知道什么原因导致这个问题,在stackoverflow中有这样的回答:
    There must be some characters in your response that are escaped in your server side code which are not valid in browser. All server side language have options when converting objects to JSON strings. you can check the invalid response in a JSON linter like https://jsonlint.com/ to see which part causes the problem then search for options to disable this behaviour in your server side code.
    应该是服务端返回了无法转换的字符。

    相关文章

      网友评论

          本文标题:axios访问服务端返回有时JSON,有时String

          本文链接:https://www.haomeiwen.com/subject/dpltidtx.html