1

我正在尝试第一次学习本机反应。我试图引入一个 stacknavigator 但该行const {navigate} = this.props.navigation;导致错误:

undefined 不是对象(评估“this.props.navigation.navigate”)

这是我的代码:

import React, { Component } from "react";
import { StackNavigator } from "react-navigation";
import { AppRegistry, Text, View } from "react-native";

export default class App extends Component {
  static navigationOptions = {
    title: "Login",
    headerStyle: {
      backgroundColor: "#000000"
    },
    headerTitleStyle: {
      color: "#fff"
    }
  };

  constructor(props) {
    super(props);
  }
  render() {
    console.log(this.props);

    const { navigate } = this.props.navigation;
    return (
      <View>
        <Text>Hello</Text>
      </View>
    );
  }
}

const myscreens = StackNavigator({
  Home: { screen: App }
});
AppRegistry.registerComponent("app", () => myscreens);

我做错了什么,我该如何解决这个问题?

我还应该提到 props 在渲染函数和构造函数中是空的。

这是我的 package.json 以防万一

{
  "name": "myapp",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "test": "jest"
  },
  "dependencies": {
    "react": "16.0.0-alpha.12",
    "react-native": "0.48.3",
    "react-navigation": "git+https://github.com/react-community/react-navigation.git"
  },
  "devDependencies": {
    "babel-jest": "21.0.2",
    "babel-preset-react-native": "4.0.0",
    "jest": "21.1.0",
    "react-test-renderer": "16.0.0-alpha.12"
  },
  "jest": {
    "preset": "react-native"
  }
}

这是我的 index.android.js

import React, { Component } from 'react';
import App from './components/app';
import {
  AppRegistry,
  View
} from 'react-native';

export default class myapp extends Component {
  render() {
    return (
        <App />
    );
  }
}


AppRegistry.registerComponent('myapp', () => myapp);
4

1 回答 1

2

两个错误:

  1. 你不应该那样打AppRegistry两次电话。您可以将其从app.js文件中删除。

  2. 您误解了react-navigation路由器的工作原理。StackNavigator(以及 Tab 和 Drawer)是需要直接呈现(例如,传递给AppRegistry[A] 的内容)或在应用程序 [B] 中的某个点呈现的组件。

因此,要解决此问题,您需要导出myscreens而不是App. 为了说明这两种方法:

A.您可以在 docs中看到这样的示例,但是由于您将代码分成两个文件,所以它看起来像这样:

./components/app.js

import React, { Component } from 'react';
import { StackNavigator } from 'react-navigation';
import { Text, View } from 'react-native';

class App extends Component {
  static navigationOptions = {
    title: 'Login',
    headerStyle: {
      backgroundColor: '#000000',
    },
    headerTitleStyle: {
      color: '#fff',
    },
  };

  constructor(props) {
    super(props);
  }
  render() {
    console.log(this.props);

    const { navigate } = this.props.navigation;
    return (
      <View>
        <Text>Hello</Text>
      </View>
    );
  }
}

const myscreens = StackNavigator({
  Home: { screen: App },
});

export default myscreens;

index.android.js

import { AppRegistry } from 'react-native';
import myscreens from './components/app';

AppRegistry.registerComponent('myapp', () => myscreens);

B.您将StackNavigator在另一个类中渲染,然后导出渲染它的类。这更符合您已经在做的事情,并且从长远来看更灵活(例如:如果您redux在某个时候使用,您将需要这样做),因此您可能应该这样做:

./components/app.js - 注意myscreensto的大小写变化MyScreens。这是必需的,因为 React Native 会抱怨这一点,因为小写 JSX 标签被认为是 HTML。直接使用AppRegistry不会触发此错误,因为您没有myscreens在 JSX 中使用。

import React, { Component } from 'react';
import { StackNavigator } from 'react-navigation';
import { Text, View } from 'react-native';

class App extends Component {
  static navigationOptions = {
    title: 'Login',
    headerStyle: {
      backgroundColor: '#000000',
    },
    headerTitleStyle: {
      color: '#fff',
    },
  };

  constructor(props) {
    super(props);
  }
  render() {
    console.log(this.props);

    const { navigate } = this.props.navigation;
    return (
      <View>
        <Text>Hello</Text>
      </View>
    );
  }
}

const MyScreens = StackNavigator({
  Home: { screen: App },
});

export default MyScreens;

index.android.js

import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import MyScreens from './components/app';

export default class myapp extends Component {
  render() {
    return <MyScreens />;
  }
}

AppRegistry.registerComponent('myapp', () => myapp);
于 2017-09-18T19:19:05.243 回答