本文主要是介绍fetch数据请求与同等作用优于axios,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import 'whatwg-fetch';
import 'es6-promise';
//销毁记录存入数据库
var url = 'https://api.fanstime.org/Hash/hash_lists/?types=ifs'
var options = {
method: 'POST',
mode: 'cors',//跨域
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: 'nums='+ burnfrom_value.value +'&hash_url=' + tx +'&types=ifs'
};
fetch(url,options).then((res)=>{
return res.json()
}).then((res)=>{
console.log(res)
})
这篇关于fetch数据请求与同等作用优于axios的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!