test.html 433 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>上传文件</title>
  7. </head>
  8. <body>
  9. <form action="/upload" method="post" enctype="multipart/form-data">
  10. <input type="file" name="ufile"> <br>
  11. <input type="file" name="ufiles" multiple> <br>
  12. <input type="submit" value="上传">
  13. </form>
  14. </body>
  15. </html>