我有一個多頁流程,當我使用'transitionTo'返回到已經顯示的路由/視圖時,'didInsertElement'方法沒有被調用。 (雖然它是在第一次顯示視圖時被解僱的)EmberJS - didInsertElement先前顯示的視圖
是否有我的視圖可以掛鉤的事件,每當它被顯示時都會被調用?
我的路線是這個樣子
App.Router.map(function() {
this.resource("parent", { path: "/parent" }, function() {
this.resource("child", { path: "/child" });
});
});
所以,當我在子視圖,並呼籲:
this.transitionTo('parent')
父視圖不火「didInsertElement」。
同一路線的這些其他視圖? AKA'/ post/1'和'/ post/2' –
一個是另一個的嵌套視圖。我會更新我的描述。 –
你想在視圖的didInsertElement鉤子中做什麼? – selvagsz