12

想象一下,任务是在 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 中是否有上述更优雅/惯用的方式?

4

2 回答 2

20

JIRA CLJS-83通过在 deftype 中添加一个神奇的“对象”协议来解决这个问题:

(deftype Foo [a b c]
  Object
  (bar [this x] (+ a b c x)))
(def afoo (Foo. 1 2 3))
(.bar afoo 3) ; >> 9
于 2013-01-02T21:20:19.380 回答
12
(defprotocol IFoo
  (bar [this x]))

(deftype Foo [a b c]
  IFoo
  (bar [_ x]
    (+ a b c x)))

(def afoo (Foo. 1 2 3))
(bar afoo 3) ; >> 9

是惯用的方法。

于 2012-01-26T16:58:08.660 回答