使用nodejs清空pdf文件

时间:2017-09-15 13:16:39

标签: javascript html node.js file pdf

我正在尝试通过html客户端发送文件,并在服务器端创建一个名为files的文件夹。

基本上我已经在我的文件夹上有一个pdf文件,但它是空的,我不知道为什么。

这是我通过html发送的方式:

private Employee[] arrayOfEmployees;

在服务器上我有上传路线:

<template>
  <div id="app">
    <form action="http://localhost:3000/upload" method="post" enctype="multipart/form-data">
      <h2>Select a file</h2>
      <input name="curriculum" id="inputVal" type="file">
      <button type="submit">Send</button>
    </form>
  </div>
</template>

任何帮助???

非常感谢!

0 个答案:

没有答案