NodeJS中的Mutipart表单数据和URL编码表单

时间:2019-04-08 18:47:37

标签: node.js

我有一个服务器端页面,该页面允许用户上传产品图片,并指定标题,产品说明。我想以一种形式执行此操作,但看起来对于文件上传,我将需要多部分表单,对于发布值,我将需要表单url编码。

我可以在其他表格中嵌入一种表格吗? (那没用)

<form action="/users/upload" method="POST" enctype="multipart/form-data">
      <label for="exampleInputPassword1">Photo</label>
      <input type="file" name="photo" />
      <button type="submit">Upload</button>
  </form>

  <form action='/users/add-product' method="POST">
  <div class="form-group">
    <label for="exampleInputEmail1">Title</label>
    <input type="text" name="title" class="form-control" placeholder="Enter title">
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">Description</label>
    <textarea class="form-control"></textarea>
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">Price</label>
    <input type="text" name="price" />
  </div>
  <div class="form-group">

  </div>

  <button type="submit" class="btn btn-primary">Save</button>

0 个答案:

没有答案