javascript - 请问带参数的文件上传该如何实现呢?
ringa_lee
ringa_lee 2017-04-11 11:40:52
0
1
517

前端上传文件时,除了文件本身之外还有一些文本参数,如下是后端代码:

如下是用POSTMAN实现的:

返回{"code":0,"data":"success"}就表示上传成功。

所以,要是写到HTML里该如何实现呢?

ringa_lee
ringa_lee

ringa_lee

reply all(1)
迷茫
<form action="/upload" method="post" enctype ="multipart/form-data"> 
    <input name="file" type="file" />
    <input name="recordType" type="text" />
    <input name="parentId" type="text" />
    <input type="submit" value="submit" />
</form>

我可能理解错题主的意思了,请忽略本答案。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template