4
我想訪問嵌套路由(子路由)中的全局查詢參數。Ember.js - 從子路由訪問全局查詢參數
本地化設置存儲在一個全局查詢帕拉姆的應用途徑:
App.ApplicationController = Ember.Controller.extend({
queryParams: ['localSelected']
});
現在我想訪問我的App.IndexRoute該值
App.TranslateRoute = Ember.Route.extend({
model: function(params){
params.localSelected **NOT AVAILABLE**
}
});
當我寫這篇文章的時候,我並沒有使用Ember Injection,可能是一個更加強烈的解決方案問題。 – Paul 2015-04-08 02:31:57