我试图在反应原生项目中使用firebase
我在我的项目中安装了firebase:
npm install --save firebase
我将其导入我的app.js
import firebase from 'firebase';
import React, { Component } from 'react';
import {
Platform,
Text,
View
} from 'react-native';
type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View >
<Text>Testando Firebase</Text>
</View>
);
}
}
然后显示错误:
对象不是作为反应子的有效(找到:对象有 键{&amp;&amp; typeof,type,key,ref,props,_owner,_store})。如果你的意思 要渲染子集合,请改用数组。
但是当我从firebase中删除导入时,该应用程序运行正常。
答案 0 :(得分:5)
尝试安装5.0.2版。以管理员身份使用此命令:
AWS::Include
据我所知,目前的版本(5.0.4)是错误的!
答案 1 :(得分:0)
您需要按以下步骤导入
从“ firebase”导入*作为firebase;