我執(zhí)行以下 axios 請求:const response = await axios({ url, method, headers: headersObject, data, params: params || {},});然后我檢查response:console.log('response.request.response')console.log(JSON.parse(response.request.response))console.log('data')console.log(response.data)令人驚訝的是, the response.datais different then JSON.parse(response.request.response)。我有一個數(shù)組 -對象labels的屬性response.data是,其中的undefined一個數(shù)組包含我期望的確切標(biāo)簽。當(dāng)某些 json 鍵的值為數(shù)組時,將 axios 數(shù)據(jù)轉(zhuǎn)換為對象存在一些問題?labelsJSON.parse(response.request.response)
axios response.data != JSON.parse(response.
12345678_0001
2022-12-09 19:00:40