状态:HTTP状态实用程序 源码
状态 节点的HTTP状态实用程序。 此模块提供了来自几个不同项目的状态代码和消息的列表: 安装 这是通过提供的模块。 使用完成 : $ npm install statuses API var status = require ( 'statuses' ) 状态(代码) 返回已知HTTP状态代码的状态消息字符串。 该代码可以是数字或字符串。 对于未知的状态代码,将引发错误。 status ( 403 ) // => 'Forbidden' status ( '403' ) // => 'Forbidden' status ( 306 ) // throws 状态(味精) 返回已知
用户评论