当我尝试调用api时,我正在React Native中工作- [类型错误]网络错误。
我正在寻找解决方案,您能帮我解决吗?
axios.post('https://mydomain/upload_video.php',JSON.stringify({
content: this.state.message,
video_url: 'myvideo_url'
}),{
headers:{
'Accept': 'application/json',
'Content-Type': 'application/json',
}
}).then((res)=>{
console.log(res.data);
}).catch((error)=>{
console.error( error) ;
})