双向绑定Firebase –错误的规则?

时间:2018-08-28 17:26:27

标签: firebase firebase-realtime-database vuefire

我正在使用VueFire将数据绑定到Firebase实例。我认为目前我的规则不正确。

这是我的数据库:

enter image description here

我试图只允许更新tv_video变量:

{
  "rules": {
    ".read": "true",
      "games":{
        "$gameId":{
          "schema":{
            "tv_video" : {
              ".read" : true,
              ".write": true
            }  
          }
        }
      }
  }
}

在Vue内部,我正在使用以下内容:

firebase() {
  return {
    game: {
      source: db.ref("games/" + this.gameId).child("schema"),
      asObject: true,
      // Optional, allows you to handle any errors.
      cancelCallback(err) {
        console.error(err);
      }
    }
  };
},

哪个可以正确绑定v-model="game.tv_video",但是当我更新它时,什么都没有改变。

0 个答案:

没有答案