Input File sumbit Class not found

最近文件上传,遇到一个愚蠢问题,在form表单提交内容到action,一切正常。但在表单中添加图片,提交就总是抛错 

Invalid action class configuration that references an unknown class。

查找半天终于找到原因,form标签中少了ENCTYPE="multipart/form-data" 配置

表单enctype="multipart/form-data"的是设置表单的MIME编码。默认编码格式是application/x-www-form-urlencoded,不能用于文件提交;修改为multipart/form-data,才能提交文件数据

猜你喜欢

转载自yrandy.iteye.com/blog/2260978