我正在使用Mobx + Reactjs + Firebase + Re-base
我有我的base.is喜欢:
import firebase from 'firebase';
import Rebase from 're-base';
import 'firebase/database';
var app = firebase.initializeApp({
apiKey: "xxxxxx",
authDomain: "xxxxxx",
databaseURL: "xxxxx",
projectId: "xxxxxx",
storageBucket: "xxxxx",
messagingSenderId: "xxxxxx"
});
export var db = firebase.database(app);
var base = Rebase.createClass(db);
export default base;
在我的TodoList.jsx上
@observer
class TodoList extends React.Component {
constructor(props){
super(props);
this.state={
todos: []
};
this.todosRef = base.syncState(`todos`,{
context: this,
state:'todos',
asArray: true,
then: function(spa){
console.log("Success!", spa);
},
onFailure: function(){
console.log("Failed!");
}
});
//this.setState({
// todos: this.props.store.todos
//});
console.log("this.state.todos", this.state.todos);
}
...........
我还做了什么:
我运行了firebase-cli命令:
firebase init(我选择了单页面应用程序,设置数据库规则读取和写入为测试目的为真)它创建了几个文件。
但无论我如何更改代码,我的网络应用程序中的数据都不会更新到我的Firebase数据库中。
export var db = firebase.database(app);
应该:
export var db = app.database();
你的syncState
东西应该在componentDidMount(){...}
而不是。
在我的情况下,我正在使用react chrome dev工具更新状态,这些工具不会更新你的firebase数据库。只使用setState以编程方式更新状态