fetch的使用
程序员文章站
2022-04-25 22:10:47
...
fetch发送get请
使用fetch()向服务器发送请求
向服务器以get方式发送请求:
//fetch是一个可以从程序向服务器发起http请求的方法
//fetch()返回值为promise对象
let url = "http://localhost:端口号?id=1";// get请求传参方式
fetch(url).then(data=>data.json()).then(result=>{
console.log(result);
});
向服务器发送post请求:
//fetch是一个可以从程序向服务器发起http请求的方法
//fetch()返回值为promise对象
let obj = {username:"jack",age=23};
fetch(url,{
method:"POST",
body:JSON.stringfy(obj),//post请求传参方式
headers:{"Content-Type":"application/x-www-form-urlencoded"}
}).then(data=>data.json()).then(result=>{
console.log(result);
});
下一篇: XCTest学习笔记