我的routes
文件看起来像:
.state('dashboard', {
url: '/dashboard'
views:
appView:
templateUrl: '/templates/main.html'
dashboardView:
templateUrl: '/templates/partialDashboard.html'
}).
main.html
看起来像:
<section class='main-page container'>
<div class="row">
<div class="col-md-3 lnHeaderArea">
<ng-include src="'/templates/companyHeader.html'"></ng-include>
</div>
<div id="main-area" class="col-md-9">
<div ui-view="dashboardView"></div>
<ng-include src="'/templates/dashboardFooter.html'"></ng-include>
</div>
</div>
</section>
partialDashboard.html
看起来像:
<section ng-controller="DashboardController">
<ng-include src="'/templates/dashboardInstitutionalDemand.html'"></ng-include>
<ng-include src="'/templates/dashboardPriceVolume.html'"></ng-include>
<ng-include src="'/templates/dashboardBlockExecutions.html'"></ng-include>
<ng-include src="'/templates/dashboardAnalytics.html'"></ng-include>
</section>
但由于某些原因,这些ng-include
的模板将无法加载。为什么呢?
2条答案
按热度按时间nafvub8i1#
ng-includes在templateUrl中工作正常。
尝试this Plnkr或Plnkr with state: views,这正好说明了这一点
解释如下
使用templateUrl路由
这是在路由1中,它具有
templateUrl: route1.html
或者像你这样的州政府
包含ng-include的模板 -route1.html注意myNgIncludeSample.html
我看到你的.state('dashboard')看起来不一样了。您可能需要修复如下。添加大括号。更新:coffeescript语法看起来很好,但是我下面的纯JS代码工作没有任何问题。
ubof19bj2#
ui-view
是一个终端指令,不能在其中放置ng-includes。你需要通过嵌套在$state
声明中定义这些模板: