{data: '{"msg":"参数错误","code":400}{"msg":"参数错误","code":400}', status: 200, statusText: 'OK', headers: AxiosHeaders, config: {…}, …} config : {transitional: {…}, adapter: Array(2), transformRequest: Array(1), transformResponse: Array(1), timeout: 0, …} data : "{\"msg\":\"参数错误\",\"code\":400}{\"msg\":\"参数错误\",\"code\":400}" headers : AxiosHeaders {cache-control: 'no-cache, no-store, must-revalidate', content-length: '66', content-type: 'application/json; charset=utf-8'} request : XMLHttpRequest {onreadystatechange: null, readyState: 4, timeout: 0, withCredentials: false, upload: XMLHttpRequestUpload, …} status : 200 statusText : "OK" [[Prototype]] : Object
时间: 2023-06-27 22:05:06 浏览: 920
jandan:解密参数实现对煎蛋网妹纸图片的爬取
这个数据看起来像是一个 Axios 请求的返回结果。其中包括了请求的配置信息(config)、返回的数据(data)、响应状态码(status)、响应状态描述(statusText)和响应头部信息(headers)。根据这个数据来看,请求的返回状态码是 200,但是返回的数据中包括了两个不同的 JSON 字符串,这是不符合 JSON 格式要求的,可能是接口返回数据出现了错误。
阅读全文