在ng-include中指定模板时的$ routeparams参数?

时间:2016-11-08 23:10:06

标签: javascript angularjs angularjs-ng-include routeparams

我试图在指定模板的视图中使用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时,我有办法指定这些参数吗?或者这是错误的做法?

0 个答案:

没有答案