我试图在指定模板的视图中使用ng-include
。它看起来像这样:
<div ng-if="editing" ng-controller="testcontroller" ng-include="'/Content/Templates/Test.html'"></div>
该模板的后备js需要一些routeparams,以及它在路由提供程序中的设置方式:
.when('/Test/:param1/:param2',
{
templateUrl: '/Content/Templates/Test.html',
controller: 'testcontroller'
})
当我使用ng-include
时,我有办法指定这些参数吗?或者这是错误的做法?