我正在使用UI Router Multiple Views概念。UI路由器嵌套視圖無法解析
該文件說,我可以有個人意見resolve
。正如您在my plunker中看到的那樣,我對子視圖有一個解決方案。該決議返回一個承諾,在我的情況下,在父控制器中解決。我用setTimeOut模擬了我的問題。基本上,5秒後,子視圖應該加載(警報說「在兒童狀態」),但它不!
相關代碼如下,但請改爲參考Plunker。
'[email protected]': {
template: '<h4>This is Child State</h4>',
controller: childCtrl,
resolve: {
trd: function(tradeFactory) {
console.log('in resolve of child');
return tradeFactory.ready();
}
}
}
哪裏是你的問題中提到的代碼? –
閱讀本示例[嵌套視圖](http://stackoverflow.com/questions/34251255/creating-nested-route-app-in-angular-using-angular-ui-router-and-switching-betwe) – Maher
@Maher你推薦的鏈接沒有「解決方案」的例子嗎?除了解決我的代碼工作正常 – TkNeo