我正在尝试从反应原生应用程序访问firebase数据库。我在Firebase控制台中设置了一个Web应用程序项目。 在应用程序中完成的客户端设置是:
import React, {Component} from 'react';
import {Text, 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: 'AIzaSyC9UxLHlEn2cRTOQGR6nnDBMIveMjNfntk',
authDomain: 'authentication-5782a.firebaseapp.com',
databaseURL: 'https://authentication-5782a.firebaseio.com',
projectId: 'authentication-5782a',
storageBucket: 'authentication-5782a.appspot.com',
messagingSenderId: '471244308758'
});
}
render () {
return (
<View>
<Header headerText="Authentication"/>
<LoginForm />
</View>
);
}
}
export default App;
添加所有必需的东西后,我仍然无法向数据库添加任何条目或获取任何条目。这有什么不对?