Polymerfire - 更新 firebase 值的正确方法是什么

Polymerfire - What is the correct way to update firebase values

更新 Firebase 值的 correct 方法是什么?是使用 firebase-document 吗?我知道在 polymerfire 中,已被弃用。但是,在 https://github.com/PolymerLabs/todo-list 中,我可以像这样简单地更新集合:

<firebase-collection location="{{userLocation}}" data="{{fbTodos}}" 
                     on-firebase-value="_firebaseLoaded">
</firebase-collection>
_firebaseLoaded: function() {
    this._firebaseConnected = true;
    this.todos = this.fbTodos;
    this.backupTodos = this.fbTodos;
    this.linkPaths('fbTodos', 'todos');
    this.linkPaths('backupTodos', 'todos');
    },

......

deleteTodo: function(e) {
 this.arrayDelete('todos', e.detail.todo);
 },

更新 firebase 数据库的正确方法是什么?顺便说一句,this.linkPaths 是做什么的?如果没有 linkPaths,则不会更新 firebase 数据库。

根据这个问题的回复https://github.com/firebase/polymerfire/issues/15,看来是可以的了。