我想使用中間件獲得req.files
。我已在express
中安裝connect-multiparty
模塊。當我嘗試導入它會引發錯誤。錯誤:無法找到模塊'connect-multiparty'
routes.js
var multipart = require('connect-multiparty');
var multipartMiddleware = multipart();
app.post('/upload', multipartMiddleware, practices.editLogo);
錯誤
Error: Cannot find module 'connect-multiparty'
上NPM安裝我得到以下幾點: -
npm WARN package.json [email protected] No description
npm WARN package.json [email protected] No repository field.
npm WARN package.json [email protected] No README data
npm WARN package.json [email protected] No repository field.
我下面這個: -
https://github.com/andrewrk/connect-multiparty
你在哪裏安裝
node_modules
文件夾'連接,multiparty'?請粘貼一個完整的路徑和'routes.js' – Curiousohh..sorry ....實際上......'connect-multiparty'模塊不在'node-modules'的'express'文件夾中。 – Anup
警告只是 - 警告。它們不會影響您的應用程序。 –