fetch的使用:总体格式:Fetch(‘url’,{mode:‘cors’,method:’POST’,headers:{‘Content-type’:‘application/x-www-form-urlencoded;charset=UTF-8’,【需要指定】},Body:JSON.stringify({a:'1000'}),},).then();在这里验证前后台传输的实质是JSON格式的字符串。注意点:’Content-Type’:form编码格式只有三种类型①text/plain...
查看全文