Rebase syncState不会更新Firebase数据

时间:2018-02-08 11:06:34

标签: reactjs firebase firebase-realtime-database rebase mobx

我正在使用Mobx + Reactjs + Firebase + Re-base

我有我的base.js:

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数据库中。

2 个答案:

答案 0 :(得分:1)

  export var db = firebase.database(app);

应该是:

export var db = app.database();

您的syncState内容应该在componentDidMount(){...}中。

答案 1 :(得分:0)

就我而言,我正在使用react chrome开发工具更新状态,该工具不会更新您的Firebase数据库。只能使用setState以编程方式更新状态