卷曲node.js中的简单HTTP HEAD请求,就像使用curl -I 。例子var curli = require ( 'curli' ) ; curli ( 'http://www.google.com' , { 'Cache-Control' : 'no-cache' } , function ( err , res ) { if ( err ) return console . error ( err ) ; console . log ( res . statusCode , res . headers ) ; } ) ; 应用程序接口卷曲(uri,opts={},cb)第一个参数uri可以是字符串或请求样式对象。在内部,如果传递一个字符串curl将使用url.parse()创建一个传递给http.request(opts) 。
暂无评论