var strftime = require('strftime'); 时间格式化中间件,功能和moment.js差不多
var methodOverride = require('method-override'); //请求方法重写 html表单提交默认只支持get和post,通过方法重写可以实现put提交
实现方法重写,一般通过在http请求头部中加入X-HTTP-Method-Override字段来实现方法重写, 也可以在表单中增设_method字段来制定需要模拟的http方法。比如
<input type='hidden' name='_method' value='put'/>