这一点可以在connect的代码中看到 connect/lib/middleware/static.js if (‘GET’ != req.method && ‘HEAD’ != req.method) return next();
只支持 get和head请求 这有点不方便,有些json格式的数据无法通过post访问
这一点可以在connect的代码中看到 connect/lib/middleware/static.js if (‘GET’ != req.method && ‘HEAD’ != req.method) return next();
只支持 get和head请求 这有点不方便,有些json格式的数据无法通过post访问