vue中fetch请求
Posted manban
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中fetch请求相关的知识,希望对你有一定的参考价值。
1. 请求方式:get
请求参数:menuName
返回的结果:data
created()
this._initPageData()
,
methods:
_initPageData()
fetch(‘http://localhost:3000/category/searchcategory?menuName=‘+this.menuName,
method: ‘get‘
).then(response => response.json()).then(data =>
this.category = data.data;
// console.log(this.category)
)
2. 请求方式:post
请求参数:username,password
返回的结果:data
fetch(‘http://localhost:3000/users/register‘,
method: ‘POST‘,
headers: ‘Accept‘: ‘application/json‘, ‘Content-Type‘: ‘application/json‘,
body: JSON.stringify( username:userPhone, password: userPassword)
).then(response => response.json()).then(data =>
console.log(data)
if(data.state)
alert(dat
以上是关于vue中fetch请求的主要内容,如果未能解决你的问题,请参考以下文章
vue使用fetch.js发送post请求java后台无法获取参数值