我正在关注 youtube 上的 Multi-Payer Notepad 游戏教程,但无法让 x-bind 工作,因为我收到以下错误:
app.fn('startGame', function(e, el) {
^
TypeError: Object #<App> has no method 'fn'
我假设此方法在 v0.6 中已更改,因为它刚刚问世。有谁知道完成此绑定的新方法?这就是 app.fn 正在做的事情:
app.fn('startGame', function(e, el) {
var userId = model.get('_session.userId');
this.model.set('_page.story.ready.' + userId, true);
});