This questionは、親ビューのプロパティを取得する方法を示します。Emberで親オブジェクトのプロパティにアクセスする方法はありますか?
一般的なEmber.Object
でこれを達成する方法はありますか?あなたが子供を作成するときに
App.Parent = Ember.Object.extend({
parentProperty: 'someValue',
child: App.Child.create()
});
App.Child = Ember.Object.extend({
init: function(){
// I don't know which is my parent object
// but I still want to access the value of `parentProperty`
// var parentProperty = ???
}
});
特に親が配列内のインスタンスである場合は、必ずしもそうとは限りません。 – knownasilya