这是我的方法,用于将登录详细信息发布到外部实时服务器。这个相同的网址在使用邮递员进行测试时有效,但使用提取会返回服务器响应并提供不完整的数据'显然是因为身体没有通过。我做错了什么..
async onRegisterPressed () {
try {
let response = await fetch('https://pentor-bff-ios.appspot.com/api/v1/user', {
method: 'POST',
mode: 'no-cors',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: 'badmustaofeeq@gmail.com', // this.state.email,
password: 'password' // this.state.password
})
})
let res = await response.text()
alert('Respose from server: ' + res)
} catch (errors) {
}
}