我在使用 CodeIgniter 2.1.4 和通过 AJAX 上传文件时遇到了一些问题。
我目前有一个完美提交的表单,如下所示(views/load_form):
<!--form created to add member to database -->
<?php echo form_open_multipart('index.php/member_record/add_member'); ?>
<?php echo form_fieldset('Create Membership Record'); ?>
<div class="container">
<form id="memberform" role="form">
<?php echo form_label('First Name', 'fname'); ?>
<?php echo form_input('fname'); ?>
</div>
<!--other such fields omitted for brevity-->
<label>Upload scanned ID Card</label>
<input type="file" name="scIDFile" id="scIDFile" />
<p class="help-block">Select image as either JPEG, GIF, PNG</p>
<input id="submit" type="submit" name="submit" value="Create Record" class="btn btn-success"/>
<!--end of view-->
我有一个控制器处理得很好(控制器/成员记录):
public member_record extends CI_Controller{
public add_member(){
$config['upload_path'] = './files/';
$config['allowed_types'] = 'gif|jpg|png|pdf';
$config['max_size']= 1024*8;
$config['encrypt_name']=TRUE;
$config['overwrite'] =TRUE;
$this->load->library('upload',$config);
foreach($_FILES as $field => $file){
if($file['error'] == 0){
if($this->upload->do_upload($field)){
/*$image_config=array(
'source_image'=>$data['full_path'],
'new_image'=>$data['file_path'].'/thumbs',
'maintain_ratio'=>true,
'width'=>150,
'height'=>100
);
$this->load->library('image_lib',$image_config);
$this->image_lib->resize();*/
}else{
$errors = $this->upload->display_errors();
}
}
}
}
}
这很好。但是,由于我要添加到视图中的某些新功能:我需要将事物转换为 AJAX 并通过 AJAX 将所有这些值传递到后端。我已经能够通过 POST 将所有字段(如名字、姓氏)提交到后端,但是我正在努力启用文件上传!我尝试过使用 jQuery File Upload 插件,但是对于如何将它们用于 CodeIgniter 2(尤其是考虑到我当前的代码),并没有非常明确的说明。如果有人能对此有所了解,我将不胜感激。