次のようなものを実装できますか:
$scope.showDashboard = function () {
$scope.dashboardPath = "/Widgets/Weather/View.htm";
$scope.widgetController = 30;
require(['/Widgets/Weather/Controller.js'], function (w) {
whatShouldIputHere = w;
});
};
<div ng-include src="dashboardPath" ng-controller="whatShouldIputHere?"></div>
コントローラを ng-include に動的に割り当てることは可能ですか?
ダッシュボードには多くのウィジェットが存在する可能性があります