js fetch方法使用
// get请求,第一个参数是请求地址,第二个可选,默认发送的是get请求
fetch('/api/user/list').then(res => {
res.json().then(data => {
console.log(data); // 获取数据
})
})
// 发送post请求
fetch('/api/user/list', {
method: 'POST',
headers: {
'Content-Type': 'application/json' //指定请求头
},
body: JSON.stringify({}) // 请求参数,需要用JSON.stringify转换
}).then(res => {
res.json().then(data => {
console.log(data); // 获取数据
})
})