react native fetch怎么加参数
1 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
首先你要明白fetch不是react的东西,而是ES的语法,fetch的格式是:
fetch('url'+参数a,
{
method: "GET",
body: json
}
.then(res => response.json())
.then(console.log(json))
)
这就跟以前的js的XMLHttpRequest一样,只不过fetch完善了XMLHttpRequest的bug,是XMLHttpRequest的进化版ajax,把fetch封装在一个函数中,通过回调的方式写入参数到url里面
- 1 回答
- 0 关注
- 1024 浏览
添加回答
举报
0/150
提交
取消