想象一下,任务是在 clojurescript 中创建一些实用程序库,以便可以从 JS 中使用它。
例如,假设我想产生一个等价物:
var Foo = function(a, b, c){
this.a = a;
this.b = b;
this.c = c;
}
Foo.prototype.bar = function(x){
return this.a + this.b + this.c + x;
}
var x = new Foo(1,2,3);
x.bar(3); // >> 9
我带来的一种实现方法是:
(deftype Foo [a b c])
(set! (.bar (.prototype Foo))
(fn [x]
(this-as this
(+ (.a this) (.b this) (.c this) x))))
(def x (Foo. 1 2 3))
(.bar x 3) ; >> 9
问题:clojurescript 中是否有上述更优雅/惯用的方式?