私は次のコンテナを持っています
script type: 'text/x-handlebars', 'data-template-name': 'application', ->
text '''
{{outlet}}
'''
次に、このビューはそれに接続されています
script type: 'text/x-handlebars', 'data-template-name': 'index', ->
text '''
{{view App.SignUpView}}
'''
実際の景色
App.SignUpView = Ember.View.extend
templateName: 'signup'
isValid: true
email: ''
password: ''
テンプレート:
script type: 'text/x-handlebars', 'data-template-name': 'signup', ->
text '''
is valid: {{isValid}}
'''
isValid フィールドをビューにバインドするにはどうすればよいですか? 未定義です。それは親ビューの「アウトレット」に何らかの関係がありますか?
このemberjs のアウトレット内での子ビューとコレクションのバインディングの例では、任意のオブジェクトをビューにバインドする方法を示しています。