vue请求
时间: 2023-07-10 19:24:36 浏览: 89
您好!关于Vue的请求,通常可以使用Vue提供的axios库来发送HTTP请求。使用axios可以轻松地发送GET、POST、PUT、DELETE等类型的请求,并且可以设置请求头、请求体等参数。以下是一个基本的axios请求示例:
```javascript
import axios from 'axios';
// 发送GET请求
axios.get('/api/user')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
// 发送POST请求
axios.post('/api/user', { name: 'John', age: 30 })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
// 设置请求头
axios.defaults.headers.common['Authorization'] = 'Bearer ' + token;
// 设置请求体
axios.defaults.headers.post['Content-Type'] = 'application/json';
```
以上仅为简单的示例,您可以根据自己的实际情况进行更改和扩展。希望能对您有所帮助!
阅读全文