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
か? それともこれは間違った方法ですか?