ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 一、概述 通过axios请求url之后,返回的数据,无论该数据是通过url请求后台得到的或者mock得到的,都将是遵循固定的数据结构的。 ![](https://img.kancloud.cn/0f/2f/0f2f4242f72198db1f0336ee57f6b5d4_351x163.png) ## 二、对象结构 ``` { // `data` 由服务器提供的响应 data: {}, // `status` 来自服务器响应的 HTTP 状态码 status: 200, // `statusText` 来自服务器响应的 HTTP 状态信息 statusText: 'OK', // `headers` 服务器响应的头 headers: {}, // `config` 是为请求提供的配置信息 config: {}, // 'request' // `request` is the request that generated this response // It is the last ClientRequest instance in node.js (in redirects) // and an XMLHttpRequest instance the browser request: {} } ```