我在config中有以下代碼。我用ui-router
AngularJS:在ui路由器解析後無法到達控制器中的變量
template: "<employee-info-component user='$resolve.user'></employee-info-component>",
resolve: {
user: function() {
return 'hello!';
}
}
在組件綁定:
binding:{
user: '<'
}
我不能在employee-info-component
控制器達到$ctrl.user
。我做錯了什麼?
解決的關鍵將被注入到路由的控制器中而不是直接在模板中訪問,因爲它可能是承諾以及在模板呈現之前沒有解決的問題 cehck here https ://github.com/angular-ui/ui-router/wiki –
謝謝你的回答!但是,在'template render cehck here'之前你是什麼意思? –