react-native:Body 不允许 GET 或 Head 请求

react-native : Body not allowd for GET or Head request

我在 react-native 上为我的应用程序创建了一个网络服务。但我总是收到错误 "react-native : Body not allowd for GET or Head request"。我在网上搜索,所有的人都说我应该把 "GET" 换成 "POST"。问题是我已经改过了,还是报同样的错误

这是我的代码:

  const{UserName}=this.state;
    const{UserPass}=this.state;
    alert("OK"+this.state.UserName+" "+this.state.UserPass+" EH  ");
    fetch(,{
      nethod:'POST',
      header:{
        'Accept':'application/json',
        'Content-type' : 'application/json'
      },
      body:JSON.stringify({
        usuario:UserName,
        password:UserPass
      })
    }).then((response) => response.json())
          .then((responseJson) =>{
            alert(responseJson);
          })
          .catch((error)=>{
            console.error(error);
          })

我做错了什么?

您似乎在第 5 行"method"

上拼错了 "method"