在React Native中发出POST请求时,出现以下错误。
这是我的代码:
releaseTable(sId,itemId,callback){
return fetch('url', {
method: 'POST',
header:{
Accept:'application/json',
'Content-Type': 'application/json',
},
body:JSON.stringify({
SessionID:sId,
ListID:itemId
})
.then((response)=> response.json())
.then((responseJson) => {
callback(responseJson)
})
.catch((error) => {
console.error(error);
})
})
}