你知道,在 angularjs 中,大部分逻辑都是基于$scope
:
function Ctrl($scope) {
$scope.name = "Freewind";
$scope.hello = function() {
alert($scope.name);
}
$scope.method1 = function() {}
$scope.method2 = function() {}
$scope.method3 = function() {}
$scope.method4 = function() {}
$scope.method5 = function() {}
}
现在我正在使用 haxe 生成 angularjs 代码,如果我的代码是:
class Ctrl {
public function new(scope:Scope) {
scope.name = "Freewind";
scope.hello = function() {
alert(scope.name);
}
scope.method1 = function() {}
scope.method2 = function() {}
scope.method3 = function() {}
scope.method4 = function() {}
scope.method5 = function() {}
}
}
typedef Scope = {
name:String,
hello:Void->Void,
method1: Void->Void,
method2: Void->Void,
method3: Void->Void,
method4: Void->Void,
method5: Void->Void
}
但是我想从 haxe 的类系统中受益(代码可能更简单更清晰),将其声明为:
class Scope {
public var name:String;
public function hello() {}
public function method1() {}
public function method2() {}
public function method3() {}
public function method4() {}
public function method5() {}
}
然后想办法把Scope
类和$scope
angularjs的关联起来。
但是Scope
从 haxe 生成的是使用原型:
Scope = function();
Scope.prototype.name = "something";
Scope.prototype.hello = function() {}
Scope.prototype.method1 = function() {}
Scope.prototype.method2 = function() {}
Scope.prototype.method3 = function() {}
Scope.prototype.method4 = function() {}
Scope.prototype.method5 = function() {}
在这种情况下,我找不到让 angularjs 使用它的解决方案。
是否可以让 angularjs 使用原型,所以它可以使用 haxe 类系统(也可以使用其他语言,如具有类支持的咖啡脚本/打字稿)?