我将我的本地服务器用于react-native应用程序,而axios post请求出现问题:当使用这样的失眠时:
[everythig很好,我的意思是服务器响应为{"status":"success"}
,正如我期望的那样。但是,关于axios:
axios
.post('http://192.168.1.41/meeter-from-here/backend/event.php', {
sesionID: '',
eventName: 'UserCreated',
eventData: {
username: 'faaafsdsd',
email: '[email protected]',
password: 'ccccccccccc',
},
})
.then(function(response) {
console.log(response.data);
})
.catch(function(error) {
console.log(error);
});
没有任何响应。数据。我的问题是axios要求的确切等同于insomia的?我试图对其进行修改,但是结果仍然是空的。 (表示错误的请求)
我认为您需要在eventData中包含字符串,请尝试以下操作:
eventData: {
'username': 'faaafsdsd',
'email': '[email protected]',
'password': 'ccccccccccc',
},
希望这会有所帮助!