我正在尝试编写聚合物应用程序。
在onLogin中调用updateItems时,问题出现在下面的代码中。
它无法识别该功能。
我也试过了.updateItems
Polymer({
is: 'my-view1',
updateItems : function(snapshot) {...},
onLogin : function(user) {
this.ref = ... ;
this.ref.on('value', function(snapshot) {
updateItems(snapshot);
});
},
});
有关如何调用updateItems的任何建议。
感谢。
答案 0 :(得分:0)
存储对this
的引用,例如:
updateItems : function(snapshot) {...},
onLogin : function(user) {
var self = this.
this.ref = ... ;
this.ref.on('value', function(snapshot) {
self.updateItems(snapshot);
});
},