同一个接口andriod没问题,pc没问题,就是ios请求是抛出错误network error,错误码为0,请求头被清空。需传送application/json的数据,所以没有使用qs,因为后端需要接受对象。代码 var instance = axios.create({
headers: {'Content-Type': 'application/json'},
}); return new Promise((resolve, reject) => {
instance({
method: 'post',
url: 'https://openapi.eos.ren/v1/chain/get_account',
data: {
account_name: name
},
}).then((res) => {
resolve(res.data)
}).catch(res => { console.log(res)
})
})
- 2 回答
- 0 关注
- 1996 浏览
添加回答
举报
0/150
提交
取消