我正在使用 XHR 从客户端向服务器端发送文件:
$(document).on('drop', function(dropEvent) {
dropEvent.preventDefault();
_.each(dropEvent.originalEvent.dataTransfer.files, function(file) {
// ...
xhr.open('POST', Router.routes['upload'].path(), true);
xhr.send(file);
});
})
现在我想响应这个 POST 服务器端并将文件保存到磁盘。文档似乎只谈论在客户端处理事情;我什至不知道如何在服务器端挂上钩子。
我现在所拥有的路线是这样的:
Router.map(function() {
this.route('home', {
path: '/'
});
this.route('upload', {
path: '/upload',
action: function() {
console.log('I never fire');
}
});
});
使用connect,我可以这样做:
Connect.middleware.router(function(route) {
route.post('/upload', function(req, res) {
// my server-side code here
});
});
Iron-Router有类似的东西吗?
深入研究内部结构,我发现 Meteorconnect
在幕后使用,我可以做这样的事情:
WebApp.connectHandlers.use(function(req, res, next) {
if(req.method === 'POST' && req.url === '/upload') {
res.writeHead(200);
res.end();
} else next();
});
但我不知道如何在这种情况下获得用户。