rrestjs
Version:
HIgh performance node.js ROA & RESTFUL web framework.
17 lines • 468 B
JavaScript
//拖拽上传的控制器
var home = {},
title = _rrest.config.webtitle;
home.index = function(req, res){
res.file('/view/static/dropExample/droptest.html');
return;
}
home.multi = function(req, res){
res.file('/view/static/dropExample/multiUpload.html');
return;
}
home.upload = function(req, res){
var size = Math.ceil((req.headers['content-length']-0)/1024)+'kb';
res.sendjson({res: 'success', size:size});
return;
}
module.exports = home;