在寻找如何设计一个Javascript API的时候,发现了Method Chaining这个东西,方法链,看上去似乎很强大,也挺有意思的,而这个东西也是过去我们经常看到的。。
Javascript Method Chaining
在维基百科上有这样的解释:
代码如下:
diom,is a common Syntax for invoking multiple method calls in object-oriented programming languages. Each method returns an object,allowing the calls to be chained together in a single statement.Chaining is syntactic sugar which eliminates the need for intermediate variables. A method chain is also known as a train wreck due to the increase in the number of methods that come one after another in the same line that occurs as more methods are chained togethe even though line breaks are often added between methods.
拿翻译工具翻译了一下:
代码如下:
40462">
方法链,也被称为命名参数法,是在面向对象的编程语言调用的调用多个方法的通用语法。每一个方法返回一个对象,允许电话连接到一起,在一个单一的声明。链接是语法糖,省去了中间变量的需要。方法链也被称为火车残骸中由于方法来相继发生的同一行以上的方法都锁在即使换行通常添加方法间的数量增加。
Method Chaining 使用
目测对于方法链用得最多的,应该就是jQuery了。
代码如下:
我们可以用这样的用法来调用这个。jQuery严重依赖于链接。这使得它很容易调用的几个方法相同的选择。这也使得代码更清晰和防止执行相同的选择几次(提高性能)。没有方法链的时候则是下面的样子
代码如下:
看上去和设计模式中的builder很像,不同的是,这里的p是方法,而不是一个类。
Javascript 方法链示例
在之前我们说到的时候,说到的print('Hello')('World'),而这种用法的结果可能会变成这样子。
代码如下: