http.get({ host: 'shapeshed.com' }, function(res) {
console.log("Got a response from shapeshed.com");
}).on('error', function(e) {
console.log("There was an error from shapeshed.com");
});
).on('error', function(e)
一个点,一个on,代表啥意思。。 function(e) 这回调函数在这里有麻用 = =
11 回复
.
表示调用对象的方法,on
是addListener
的别名,用于注册事件监听器的,eventEmitter.addListener('err', function (e) {})
就是监听eventEmitter
(事件发生器,这里就是http.get()方法返回的对象)的error
事件,事件发生后你传递的匿名函数function (e) {}
会被调用,并且会得到一个参数e
这么看: http.get().on(…).on(…),说明 http.get() 这个函数返回的对象有 on() 这个方法可以调,同时,on() 方法也返回对象本身,所以可以继续 on()
专业名词应该叫 链式调用。