gpt4 book ai didi

react-native - 如何使用 native 应用程序将数据发送到服务器并获取响应?

转载 作者:行者123 更新时间:2023-12-03 14:12:25 26 4
gpt4 key购买 nike

我正在尝试通过使用 api 调用制作一个简单的登录页面来学习 React Native 应用程序。我将向 api 发送用户名和密码的地方,它会给我回复。但我做不到。好吧,我在这里分享我的代码......

var myRequest = new Request('<my API >', {method: 'POST', body: '{"username":this.state.uName , "password":this.state.pwd}'});
fetch(myRequest).then(function(response) {
alert('Res'+response);
}).then(function(response) {
alert('Blank'+response);
})
.catch(function(error) {
alert('Error'+error);
});

我认为将我的用户名和密码传递给服务器的方式是错误的。请给我一些想法,然后我就可以理解这里出了什么问题。

最佳答案

var data = {
"username": this.state.username,
"password": this.state.password
}

fetch("https://....", {
method: "POST",
headers: headers,
body: JSON.stringify(data)
})
.then(function(response){
return response.json();
})
.then(function(data){
console.log(data)
});

我希望这有帮助。

关于react-native - 如何使用 native 应用程序将数据发送到服务器并获取响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43447106/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com