http://www.3scard.com/index.php?m=blog&f=view&id=260
fetch函数用于发起异步http请求;
fetch相比XMLHttpRequest更容易使用;
promise是异步对象,fetch使用promise实现异步操作;
发起get请求
1 2 3 4 5 6 |
|
发起post请求
1 2 3 4 5 6 7 |
|
https://blog.csdn.net/daban2008/article/details/127180303
http://www.3scard.com/index.php?m=blog&f=view&id=260
fetch函数用于发起异步http请求;
fetch相比XMLHttpRequest更容易使用;
promise是异步对象,fetch使用promise实现异步操作;
1 2 3 4 5 6 |
|
1 2 3 4 5 6 7 |
|
https://blog.csdn.net/daban2008/article/details/127180303