0

我正在尝试ng-include在指定模板的视图中使用。它看起来像这样:

<div ng-if="editing" ng-controller="testcontroller" ng-include="'/Content/Templates/Test.html'"></div>

该模板的支持 js 需要一些路由参数,就像它在路由提供程序中的设置方式一样:

.when('/Test/:param1/:param2',
{
    templateUrl: '/Content/Templates/Test.html',
    controller: 'testcontroller'
})

有没有办法让我在使用时指定这些参数ng-include?或者这是错误的方法吗?

4

0 回答 0