vue3 request
时间: 2023-11-08 12:05:57 浏览: 367
vue3_vue_
如果您想在 Vue3 中发起请求,可以使用内置的 `fetch` 函数或者第三方库 `axios`。下面是使用 `fetch` 函数发起 GET 请求的示例代码:
```javascript
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
```
如果您想发起 POST 请求,可以在 `fetch` 函数的第二个参数中传递一个配置对象,例如:
```javascript
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
title: 'foo',
body: 'bar',
userId: 1
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
```
阅读全文