0

概念実証のために、コントローラー x の 1 つの値をアプリケーション コントローラーにバインドしようとしました。

具体的には、タイトル プロパティをアプリケーション コントローラーの対応するタイトル プロパティにバインドしました。

しかし、それは機能せず、理由がわかりません。

window.App = Ember.Application.create();

App.SiteController = Ember.ObjectController.extend({
    needs: "application",
    titleBinding: "controllers.application.title"
});

App.IndexController = App.SiteController.extend({
    init: function() {
        this._super();
        this.set("title", "Home");
    }
});

http://jsbin.com/ucanam/1743/edit

バインディングを間違って理解しましたか?

4

1 に答える 1