使用axios.get如何获取http://127.0.0.1:3007/my/type/deletecate/10
时间: 2023-10-06 16:04:16 浏览: 133
Error:in ./node-modules/axios/lib/platform/index.js
你可以像这样使用axios.get来获取http://127.0.0.1:3007/my/type/deletecate/10:
```javascript
axios.get('http://127.0.0.1:3007/my/type/deletecate/10')
.then(function (response) {
// 处理响应数据
console.log(response.data);
})
.catch(function (error) {
// 处理错误
console.log(error);
});
```
其中,'.then()'方法用于处理成功响应,'.catch()'方法用于处理错误响应。在成功响应时,你可以通过'response.data'来获取响应数据。
阅读全文