如何在Node.js中上传和显示文件?

问题描述 投票:0回答:1

我是Node的新手,在上传文件方面遇到了一些问题。我正在尝试以text / plain上传图像(jpg和png)和文本文件,然后在路径后('/ upload)'显示它们。我已经尝试了multer和强大,但无法做到正确。非常感谢一些帮助。

我尝试了所有不同类型的事件和回调,但我错过了一些关键步骤。这是html:

<!DOCTYPE html>
  <html lang="en">
  <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial- 
     scale=1.0">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
     <title>Testform</title>
 </head>
 <body>
   <form method="post" enctype="multipart/form-data" 
    action="/upload">
     <div>
       <input type="file" name="file" size="35">
     </div>
     <button type="submit" value="Click me" name="submit-btn">Click me</button>
   </form>
   </body>
</html>   

这是服务器代码:

const formidable = require('formidable')
const express = require('express')
const path = require('path') 

const app = express()

app.get('/', (req, res) => {
   res.sendFile(path.resolve('views', 'index.html'))
})

app.post('/upload', (req, res) => {

  const form = new formidable.IncomingForm()

  form.uploadDir = __dirname + '/uploads/'

  form.parse(req)

  form.on('fileBegin', (name, file) => {
    file.path = form.uploadDir + file.name
    res.write(`<img src="./uploads/${file.name}">`)
    res.end()
  })
 })

 app.listen(3000)

我的根文件夹包含app.js,views / index.html和一个名为uploads的目录。

代码是我上传图片的测试用例。当我运行程序时,具有正确名称和内容的文件将上载到目录“./uploads”中。但是,我无法在帖子请求('/ upload')的响应中看到上传的图像。如果有人可以帮助我以及其他文本文件(text / plain),那将会很棒。干杯!

node.js file-upload formidable
1个回答
0
投票

在请求的响应中,您可以发送值,因此res.end(此处的值)之类的工作正常!

© www.soinside.com 2019 - 2024. All rights reserved.