开发者问题收集

undefined 不是带有 fetch 的对象(评估“this.props.navigation”)

2020-05-14
269

我尽力使用 React Native 制作登录表单,但是:

  • 我无法重定向到“App”,错误消息是:(TypeError:未定义不是对象(评估“this.props.navigation”)])

    try {
    fetch('http://93.xxx.xx.xx:5151/login', {
    method: 'POST',
    headers: {
    'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
    },
    body: formBody,
    })
    .then(function(response) {
    if (response.ok) {
    this.props.navigation.navigate('App');
    } else {
    throw new Error("Failed to fetch [error : " + response.status + "]");
    Alert.alert("错误 [" + response.status + "] - " + response.statusText);
    }
    })
    .then(function(response) {
    if (response.ok) {
    Alert.alert(response.userToken);
    console.log(response);
    } else {
    Alert.alert("错误 [" + response.status + "] - " + response.statusText);
    }
    })
    } catch (error) {
    if (error) {
    console.error(error);
    }
    }
    

有人知道怎么做吗?

  • 到目前为止,我只有一个解决方案:

    fetch('http://93.xxx.xx.xx:5151/login', {
    method: 'POST',
    headers: {
    'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
    },
    body: formBody
    })
    .then(res => {
    if (res.ok) {
    this.props.navigation.navigate('App')
    } else {
    if (res.status == 400) {
    Alert.alert("Error 400 : login denied because -> " + res.message)
    } else {
    throw Error(`Request denied with status ${res.status}`);
    }
    }
    })
    .catch(console.error)
    }
    

但是对于这个解决方案,我不知道如何保存用户令牌...

2个回答

这是一个范围问题,请将其更改为:

.then(function(response) { // due to this you are losing `this` scope inside it

// due to that, this is not accessible, in result you will get error
this.props.navigation.navigate('App');

至:

.then((response) => { // <--- Fat arrow is what you need
Vivek Doshi
2020-05-14

第一个是范围问题。如果要在匿名函数中使用“此”,则需要将其绑定到对象。 有两种方法:

1)如果您使用旧功能样式,则以前的对象不会自动绑定。因此,您需要手动绑定父对象。 如果您想对此进行更多的解释,请在这里查看: JavaScript“ bind”方法的使用是吗?

776782311

2)第二种方法是使用ES6“ fat Arrow”功能。这在内部有些不同,并直接绑定了父obejct的内容。

100951108

在您的第二个问题上,我不完全理解您的目标是什么。您是否希望用户令牌在您的下一条路线中?如果是这样,则应使用“ setParams”:

283757908
Chris Pi
2020-05-14