有没有办法接受meteorjs的多部分forms? 即图片上传?

我希望能够将图片上传到我正在处理的网站,但是我不知道应该如何使用meteorjs。 有没有办法接受meteorjs的多部分forms? 即图片上传?

我总是可以上传一个小的sinatra应用程序来上传文件,但我宁愿不要。

看起来像eventminded有一个file upload包可以使用。 https://www.eventedmind.com/posts/meteor-build-a-file-upload-package

你需要编写一个中间件来接受这样的请求。

WebApp.connectHandlers.stack.splice(0, 0, { route: '/your/url/for/inputs', handle: function(req, res, next) { // Handle request and response // just like you would do in node.js. // Make sure to wrap your db calls in Fibers. // Use next() if you change your mind // and don't want to handle this request after all. }, });