JavaScript中的构造函数和方法链接

时间:2012-11-18 04:50:22

标签: javascript

我正在尝试与我的构造函数一起使方法链工作,但我不确定如何去做。这是我到目前为止的代码:

function Points(one, two, three) {
this.one = one;
this.two = two;
this.three = three;
}

Points.prototype = {

add: function() {
    return this.result = this.one + this.two + this.three;
},
multiply: function() {
    return this.result * 30;
}

}

var some = new Points(1, 1, 1);
console.log(some.add().multiply());

我试图在add方法的返回值上调用multiply方法。我知道有一些显而易见的事我不做,但我不确定它是什么。

有什么想法吗?

1 个答案:

答案 0 :(得分:13)

您不应该返回表达式的结果。而是返回此。

Points.prototype = {

    add: function() {
        this.result = this.one + this.two + this.three;
        return this;
    },
    multiply: function() {
        this.result = this.result * 30;
        return this;
    }

}

然后像这样使用它:console.log(some.add().multiply().result);