type is:推断请求的内容类型 源码
类型是 推断请求的内容类型。 安装 这是通过提供的模块。 使用完成 : $ npm install type-is API var http = require ( 'http' ) var typeis = require ( 'type-is' ) http . createServer ( function ( req , res ) { var istext = typeis ( req , [ 'text/*' ] ) res . end ( 'you ' + ( istext ? 'sent' : 'did not send' ) + ' me text' ) } )
用户评论