1
私が反応し、ネイティブのは非常に新しいですし、私はログインのためは、未定義エラーのbodyUsed
payload={email:"[email protected]",password:"helo123"};
var Options=
{
method: 'POST',
headers: {'Accept': 'application/json','Content-Type': 'application/json'},
body: payload
}
fetch(Conf.API.SIGNIN, Options)
.then((response) =>
{
if (response.status >= 400)
{
throw new Error("Bad response from server");
}
return response.json();
})
.then((responseData) =>
{
//this.setState({data:responseData})
console.log(responseData)
})
.catch((error) => {
console.error("Error:"+error);
})
.done();
をコードを書かれている。しかしIAMのは誤り
index.android.bundle:19291 Error:TypeError: Cannot read property 'bodyUsed' of undefined
は専門家であるいずれかの缶なっ入手します。誰も助けることができますか?
プロジェクトディレクトリの 'bodyUsed'を検索すると、貼り付けたコードにはそのコードがありません。 –
bodyUsedはどこに使用されていますか? – error404
私はbodyUsed Anywhereを使用していません – user811546