fetch('http://hk.mzooe.com/api.php?app=api&mod=Oauth&act=authorize',{
method: 'POST',
headers: {
'Accept': 'application/json',
},
body:formData
})
.then((response) => {
if (response.ok) {
return response.json();
}
})
.then((json) => {
console.log(json)
})
.catch((error) => {
console.error(error);
});
android路径 https://blog.csdn.net/qq_34753923/article/details/59491934
网友评论