gpt4 book ai didi

ios - 找不到 React Native 模块

转载 作者:行者123 更新时间:2023-11-28 19:33:00 27 4
gpt4 key购买 nike

我的 ios 模拟器出现以下错误

Unable to resolve module react-native from / Users/myname/source/sandbox/auth/src/components/LoginForm.js: Module does not exist in the module map or in these directories:
/Users/myname/source/sandbox/auth/node_modules

我继续按照明确守望者的指示进行操作。关闭我的终端,重新启动我的电脑。

我在这里和其他来源进行了研究。找到了一个解决方法来安装旧版本的 firebase。我安装了 version@2.4.2 出现了同样的错误。

这是我的应用组件

import React, { Component } from 'react';
import { View } from 'react-native';
import firebase from 'firebase';
import { Header } from './components/common';
import { LoginForm } from './components/LoginForm';

class App extends Component {
componentWillMount() {
firebase.initializeApp({
apiKey: "myApiKey",
authDomain: "myDomain",
databaseURL: "myURL",
storageBucket: "myStorageBucket",
messagingSenderId: "myMessengerID"
});
}
render () {
return (
<View>
<Header headerText="Authentication" />
<LoginForm />
</View>

);
}
}
export default App;

登录表单组件

import React, { Component } from 'react';
import { View } from 'react-natvie';
import { Button, Card, CardSection } from './common';

class LoginForm extends Component {
render() {
return (
<Card>
<CardSection />
<CardSection />
<CardSection>
<Button>
Log In
</Button>
</CardSection>
</Card>
);
}
}

export default LoginForm;

如有任何帮助,我们将不胜感激!

最佳答案

您在 LoginForm 组件的开头拼错了 react-native import。

关于ios - 找不到 React Native 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41840140/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com