我部署了Node JS应用,当它必须显示图像时遇到了问题
我明白了
获取https://pedigree-notes.com/countryflags/united-states-of-america.png 404(未找到)
但是在我的app.js中,我使用了theese。
app.use('/images', express.static(path.join(__dirname,'images')));
app.use('/countryflags', express.static(path.join(__dirname,'countryflags')));
对于/ images起作用,但是由于这不起作用,能否请您告诉我该怎么做?
这是我在其中使用“标志”的ejs和html标记
<td> <img src="/<%= recentNote.flag %>" alt="" style="width:20px"></td>
通过添加该app.use(....),我希望它能正常工作,但是不起作用。
谢谢