我在React Native中有登錄功能,我嘗試獲取數據。功能如下:Fetch在React Native中不起作用ios
onLogin: function() { //
const self = this;
self.setState({modalVisible: true, modalMessage: 'Signing in'});
fetch('http://psa.autralis.com/manager/api/v1/obtain-auth-token/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
username: self.state.username,
password: self.state.password,
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch((error) => {
console.warn(error);
});
},
但由於某些原因,它不上IOS工作。我得到一個錯誤:
在Android上它的工作原理,和我一起郵差測試它還有也適用。
有什麼想法?
我解決了它已經和我添加的溶液。但我會接受你的回答。 – Boky