标签:前端 data str pos Enctype bsp htm strong form
前端
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
标签:前端 data str pos Enctype bsp htm strong form
原文地址:http://www.cnblogs.com/rgqancy/p/6203512.html