how express forming the img URL
问题 I have created a simple node solution which contains a form and on that submit the form it will display the image that is being inserted in the form. app.js const app = express() app.use(express.static('public')) app.engine('hbs',handlebars({ layoutsDir : __dirname + '/views/layouts', defaultLayout : "mainlayout", extname : "hbs", partialsDir : __dirname + '/views/partials' })) app.use("/uploader", imgUploader) app.set('view engine','hbs') impUpload.js const express = require('express') const