我正在阅读以下代码行
items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
来自bootstrap-typeahead.js v2.1.0。
有人可以解释我吗
this.source(this.query, $.proxy(this.process, this))
如何运作?
肯定:
1)我认为this.source
是指(1)中的函数定义,然后是
(1)
element.typeahead({
minLength: 3,
source: function () {
// some code
}
});
答案 0 :(得分:1)
制止它:items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source;
所以Object有一个名为source的属性,this.source
看起来this.source
可能是一个数组或一个函数。它们谓词函数$.isFunction(this.source)
接受一个Object,如果它是一个函数,则返回true。如果它是一个函数this.source(this.query, $.proxy(this.process, this))
将被执行。
现在要取消this.source(this.query, $.proxy(this.process, this))
来电。
我们从$.isFunction(this.source)
调用的结果中知道this.source
是一个函数,它需要2个参数。第一个,我猜的this.query
是一个字符串。第二个,$.proxy(this.process, this))
是回调函数。 $.proxy
接受两个参数,一个Function和一个Object / context,并返回一个新函数。返回的函数上下文(this
)确保在Object / context中传递。
$.proxy
看起来像这样
var proxy = function( func, context ) {
return ( function() {
func.apply( context, arguments );
});
};
//build a new function and set this to window
var newFunction = proxy( someOrtherFunction, window );
//use the new function
newFunction();
您可以在此处详细了解$.proxy
:http://api.jquery.com/jQuery.proxy/
$.proxy(this.process, this)
生成的新创建的函数在this.source
函数中用作回调。