如何通过jquery / ajax验证codeigniter中的文件字段?

时间:2016-05-28 05:14:59

标签: jquery ajax codeigniter

我有提交多个字段的大表单。此表单由后端的codeigniter和前端的jquery / Ajax验证。它完美无缺。 但现在我想在此表单中添加用于文件上传的字段。问题是如何通过Ajax在codeigniter中验证此文件字段。

1 个答案:

答案 0 :(得分:0)

亲爱的首先,您必须在表单标记中添加form属性作为enctype =“multipart / form-data”,然后当您要在模型中插入表格时,请检查如下:

if(trim($ _ FILES ['imagename'] ['name'])!='')

{

  / 插入 /

}

否则

{

返回'请选择图片';

}