我一直在使用react-native的fetch方法来调用api但不幸的是,它下面说的意外url是我的代码
const myRequest = new Request("http://ipadress::portAddess/console/login/LoginForm.jsp", { method: 'GET' });
fetch(myRequest).then(response => {
if (response.status === 200) {
return response;
} else {
throw new Error('Something went wrong on api server!');
}
}).then(response => {
console.debug(response);
// ...
}).catch(error => {
console.error(error);
});
答案 0 :(得分:0)
为什么在这里使用new Request
?
您必须直接将url和params传递给fetch
函数。以下是您的代码示例:
fetch("http://ipadress::portAddess/console/login/LoginForm.jsp", {
method: 'GET',
})
.then(...)