此Axios发布请求是否正确?

问题描述 投票:0回答:1

我将我的本地服务器用于react-native应用程序,而axios post请求出现问题:当使用这样的失眠时:enter image description here

[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的?我试图对其进行修改,但是结果仍然是空的。 (表示错误的请求)

apache http post axios
1个回答
0
投票

我认为您需要在eventData中包含字符串,请尝试以下操作:

eventData: {
      'username': 'faaafsdsd',
      'email': '[email protected]',
      'password': 'ccccccccccc',
   },

希望这会有所帮助!

© www.soinside.com 2019 - 2024. All rights reserved.