前端
1.表单提交方法与格式
<form class="form-horizontal" action="/biz/patent/edit" method="post" enctype="multipart/form-data">
2.input注意不要写value=""
<input type="file" name="attorneyFile" />
后端
3.entity.getAttorneyFile() != null不发生,即使你在HTML里没选任何文件, 因此关键判断是getSize() > 0。
entity.getAttorneyFile() != null && entity.getAttorneyFile().getSize() > 0
时间: 2024-10-12 07:21:53