使用SpringMVC进行文件上传操作时表单的enctype属性必须设置为“application/x-www=form-urlencoded”
举一反三
- 使用SpringMVC进行文件上传操作时表单的enctype属性必须设置为“multpart/form-data”
- 当使用表单进行文件上传时必须指定表单的 enctype 属性为multipart/form-data
- 文件上传表单需要满足的3个条件如下:(1)form表单的method属性设置为();(2)form表单的enctype属性设置为();(3)提供的文件上传输入框。
- 文件上传时form表单的enctype属性取值应该是_____________
- 使用文件上传控件时,需要设置表单的enctype属性为____,才能实现将文件上传到服务器端 A: application/x-www-urlencoded B: multipart/form-data C: text-plain D: 不需设置enctype属性