我正在使用带有 Angular 的 Typescript,如此处所述http://www.youtube.com/watch?v=WdtVn_8K17E
class MyController {
thescope: any;
static $inject = ['$scope'];
constructor($scope) {
$scope.vm = this;
this.thescope = $scope;
}
...
}
我想创建这个控制器的一个实例。我必须使用什么作为 $scope 参数?
var mc = new MyController(whatParameterHere?); //