如何使用axios.get 动态请求http://127.0.0.1:3007/my/type/deletecate/10
时间: 2023-10-05 10:08:53 浏览: 161
axios-0.19.2.tar.gz
你可以使用axios.get方法来动态请求http://127.0.0.1:3007/my/type/deletecate/10。下面是一个示例代码:
```
import axios from 'axios';
axios.get('http://127.0.0.1:3007/my/type/deletecate/10')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
在这个例子中,我们使用了axios.get方法来发送GET请求,并将请求URL设置为http://127.0.0.1:3007/my/type/deletecate/10。一旦我们收到响应,我们使用.then方法来处理响应数据,并将其打印到控制台中。如果出现任何错误,我们使用.catch方法来处理错误。
阅读全文