反应原生的意外网址

时间:2018-04-02 09:55:29

标签: javascript android react-native fetch fetch-api

我一直在使用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);
});

1 个答案:

答案 0 :(得分:0)

为什么在这里使用new Request

您必须直接将url和params传递给fetch函数。以下是您的代码示例:

fetch("http://ipadress::portAddess/console/login/LoginForm.jsp", {
  method: 'GET',
})
.then(...)