无法解析模块。急速模块图中不存在模块“屏幕/屏幕”

时间:2018-10-17 21:12:18

标签: reactjs react-native

我最近一直在与React Native一起尝试生成一个移动应用程序。我正计划使用react-navigation插件,以允许用户更改屏幕。但是,当我将屏幕(ScreenOne.js)导入App.js时。但是,我得到了错误:

Unable to resolve module `screens/ScreenOne` from `C:\Users\User\Desktop\Projects\LRAPPMAIN\App.js`: Module `screens/ScreenOne` does not exist in the Haste module map

这很奇怪,因为导入时我只会收到此错误。我的代码如下:

ScreenOne.js

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

export class ScreenOne extends Component {
render() {
    return (
        <View>
            <Text>This is the Settings screen</Text>
            <Button title="Home"/>
        </View>
        )
    };
export default ScreenOne;

App.js

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';

import ScreenOne from 'screens/ScreenOne'

type Props = {};
export default class App extends Component<Props> {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>Welcome to React Native!</Text>
        <Text style={styles.instructions}>To get started, edit App.js</Text>
        <Text style={styles.instructions}>{instructions}</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
   backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

我在这里做错什么了吗?

1 个答案:

答案 0 :(得分:0)

当您在react上导入某些内容且不使用相对路径时,它将始终在您的node-modules文件夹中。

您可能想对App.js文件执行的操作是

import ScreenOne from './screens/ScreenOne';

这样,react不会查找相对于您当前文件的文件。

您忘记关闭ScreenOne.js文件中的一个大括号。