Axios响应数据反转

时间:2019-03-21 16:55:03

标签: javascript axios fetch

这是我的代码

const response = await axios.get(url, { headers, params });
const { data } = await response;
console.log(data);

日志结果为:

enter image description here

但是浏览器的网络devtools显示:

enter image description here

在那里您可以看到日志和网络devtools的结果列表是相反的。正确的顺序应该是浏览器显示的顺序(我也将其打印在后端)

0 个答案:

没有答案