类型错误:无法读取未定义的属性“navigate”
2021-07-26
199
大家晚上好!
我试图点击“登录或注册按钮”,但收到以下错误:“TypeError:无法读取未定义的属性‘navigate’”
我试图在项目内做一些小的改变,但没有成功:(
TypeError: Cannot read property 'navigate' of undefined
onPress
C:/Users/André Vieira/DoneWithit/app/screens/WelcomeScreen.js:21
18 | <View style={styles.buttonsContainer}>
19 | <Button
20 | title="Login"
> 21 | onPress={() => navigation.navigate(routes.LOGIN)}
| ^ 22 | />
23 | <Button
24 | title="Register"
View compiled
这是我的登录屏幕
import React, { useState } from "react";
import { StyleSheet, Image } from "react-native";
import * as Yup from "yup";
import Screen from "../components/Screen";
import {
ErrorMessage,
Form,
FormField,
SubmitButton,
} from "../components/forms";
import authApi from "../api/auth";
import useAuth from "../auth/useAuth";
const validationSchema = Yup.object().shape({
email: Yup.string().required().email().label("Email"),
password: Yup.string().required().min(4).label("Password"),
});
function LoginScreen(props) {
const auth = useAuth();
const [loginFailed, setLoginFailed] = useState(false);
const handleSubmit = async ({ email, password }) => {
const result = await authApi.login(email, password);
if (!result.ok) return setLoginFailed(true);
setLoginFailed(false);
auth.logIn(result.data);
};
return (
<Screen style={styles.container}>
<Image style={styles.logo} source={require("../assets/logo-red.png")} />
<Form
initialValues={{ email: "", password: "" }}
onSubmit={handleSubmit}
validationSchema={validationSchema}
>
<ErrorMessage
error="Invalid email and/or password."
visible={loginFailed}
/>
<FormField
autoCapitalize="none"
autoCorrect={false}
icon="email"
keyboardType="email-address"
name="email"
placeholder="Email"
textContentType="emailAddress"
/>
<FormField
autoCapitalize="none"
autoCorrect={false}
icon="lock"
name="password"
placeholder="Password"
secureTextEntry
textContentType="password"
/>
<SubmitButton title="Login" />
</Form>
</Screen>
);
}
const styles = StyleSheet.create({
container: {
padding: 10,
},
logo: {
width: 80,
height: 80,
alignSelf: "center",
marginTop: 50,
marginBottom: 20,
},
});
export default loginscreen;
也许这很简单,但我搞不懂。
有人可以帮忙吗?谢谢
我的欢迎屏幕
import React from "react";
import { ImageBackground, StyleSheet, View, Image, Text } from "react-native";
import Button from "../components/Button";
import routes from "../navigation/routes";
function WelcomeScreen({ navigation }) {
return (
<ImageBackground
blurRadius={10}
style={styles.background}
source={require("../assets/background.jpg")}
>
<View style={styles.logoContainer}>
<Image style={styles.logo} source={require("../assets/logo-red.png")} />
<Text style={styles.tagline}>Sell What You Don't Need</Text>
</View>
<View style={styles.buttonsContainer}>
<Button
title="Login"
onPress={() => navigation.navigate(routes.LOGIN)}
/>
<Button
title="Register"
color="secondary"
onPress={() => navigation.navigate(routes.REGISTER)}
/>
</View>
</ImageBackground>
);
}
const styles = StyleSheet.create({
background: {
flex: 1,
justifyContent: "flex-end",
alignItems: "center",
},
buttonsContainer: {
padding: 20,
width: "100%",
},
logo: {
width: 100,
height: 100,
},
logoContainer: {
position: "absolute",
top: 70,
alignItems: "center",
},
tagline: {
fontSize: 25,
fontWeight: "600",
paddingVertical: 20,
},
});
export default WelcomeScreen;
来自控制台
Uncaught TypeError: Cannot read property 'navigate' of undefined
at onPress (WelcomeScreen.js:21)
at onClick (PressResponder.js:333)
at HTMLUnknownElement.callCallback (react-dom.development.js:188)
at Object.invokeGuardedCallbackDev (react-dom.development.js:237)
at invokeGuardedCallback (react-dom.development.js:292)
at invokeGuardedCallbackAndCatchFirstError (react-dom.development.js:306)
at executeDispatch (react-dom.development.js:389)
at executeDispatchesInOrder (react-dom.development.js:414)
at executeDispatchesAndRelease (react-dom.development.js:3278)
at executeDispatchesAndReleaseTopLevel (react-dom.development.js:3287)
at forEachAccumulated (react-dom.development.js:3259)
at runEventsInBatch (react-dom.development.js:3304)
at runExtractedPluginEventsInBatch (react-dom.development.js:3514)
at handleTopLevel (react-dom.development.js:3558)
at batchedEventUpdates$1 (react-dom.development.js:21871)
at batchedEventUpdates (react-dom.development.js:795)
at dispatchEventForLegacyPluginEventSystem (react-dom.development.js:3568)
at attemptToDispatchEvent (react-dom.development.js:4267)
at dispatchEvent (react-dom.development.js:4189)
at unstable_runWithPriority (scheduler.development.js:653)
at runWithPriority$1 (react-dom.development.js:11039)
at discreteUpdates$1 (react-dom.development.js:21887)
at discreteUpdates (react-dom.development.js:806)
at dispatchDiscreteEvent (react-dom.development.js:4168)
3个回答
似乎 WelcomeScreen 不在导航器内,它将导航作为道具传递。如果您使用的是 react-navigation 5.x,则可以使用钩子:
import React from "react";
import { ImageBackground, StyleSheet, View, Image, Text } from "react-native";
import { useNavigation } from '@react-navigation/native';
import Button from "../components/Button";
import routes from "../navigation/routes";
function WelcomeScreen() {
const navigation = useNavigation();
return (
<ImageBackground
blurRadius={10}
style={styles.background}
source={require("../assets/background.jpg")}
>
<View style={styles.logoContainer}>
<Image style={styles.logo} source={require("../assets/logo-red.png")} />
<Text style={styles.tagline}>Sell What You Don't Need</Text>
</View>
<View style={styles.buttonsContainer}>
<Button
title="Login"
onPress={() => navigation.navigate(routes.LOGIN)}
/>
<Button
title="Register"
color="secondary"
onPress={() => navigation.navigate(routes.REGISTER)}
/>
</View>
</ImageBackground>
);
}
const styles = StyleSheet.create({
background: {
flex: 1,
justifyContent: "flex-end",
alignItems: "center",
},
buttonsContainer: {
padding: 20,
width: "100%",
},
logo: {
width: 100,
height: 100,
},
logoContainer: {
position: "absolute",
top: 70,
alignItems: "center",
},
tagline: {
fontSize: 25,
fontWeight: "600",
paddingVertical: 20,
},
});
export default WelcomeScreen;
Perniferous
2021-07-26
当出现以下情况时,JS 返回未定义 - 1) 您尝试访问的值不存在。2) 您使用的值不存在 3) 函数未返回任何内容。4) 当您使用纯代码而代码中没有任何函数时。 当值不存在时? - 当它实际上不存在或您尚未收到它以便可以使用它时。
对于您的情况 -
您的
navigation
位于
welcomeScreen(parameter)
的对象(参数)内。您需要先访问该
object
。然后,您可能能够使用函数
navigate
。
也可能是因为
routes
未正确导入。
2021-07-26
使用 Pernifeous 解决方案后,我开始收到此信息:
Error: Couldn't find a navigation object. Is your component inside a screen in a navigator?
▶ 21 stack frames were collapsed.
registerRootComponent
C:/Users/src/launch/registerRootComponent.tsx:14
11 | AppRegistry.registerComponent('main', () => withExpoRoot(component));
12 | if (Platform.OS === 'web') {
13 | const rootTag = document.getElementById('root') ?? document.getElementById('main');
> 14 | AppRegistry.runApplication('main', { rootTag });
15 | }
16 | }
17 |
我的路线配置:
export default Object.freeze({
LISTING_DETAILS: "ListingDetails",
LISTING_EDIT: "ListingEdit",
LOGIN: "Login",
MESSAGES: "Messages",
REGISTER: "Register",
});
Fabio Ochoa Restrepo
2021-07-26