doubijiao2094 2016-04-29 10:44
浏览 101

使用Codeigniter通过JQuery AJAX一起发送FormData和上传文件?

I am uploading file through Ajax using codiegniter but i also want to send from data and get it on controller and perform on it.

file uploading is working but can't get other form data.

I also serialize form data but didn't work.

Html Code :

<form action="<?php echo site_url("admin_panel/upload_project_image") ?>" id="form-upload">

<input type="hidden" name="project_id" id="project_id" value="<?=$project_details->ID;?>">
              <div class="fileinput fileinput-new input-group" data-provides="fileinput">
                <div class="form-control" data-trigger="fileinput" style="margin:3px"> <i class="glyphicon glyphicon-file fileinput-exists"></i>
                  <span class="fileinput-filename"></span>
                </div>
                <span class="input-group-addon btn btn-default btn-file" style="margin:3px">
                  <span class="fileinput-new"> <i class="glyphicon glyphicon-paperclip"></i>
                    Select file
                  </span>
                  <span class="fileinput-exists">
                    <i class="glyphicon glyphicon-repeat"></i>
                    Change
                  </span>
                  <input type="file" name="file[]" multiple id="file"></span>
                <a href="#" class="input-group-addon btn btn-default fileinput-exists" data-dismiss="fileinput" style="margin:3px">
                  <i class="glyphicon glyphicon-remove"></i>
                  Remove
                </a>
                <a href="#" id="upload-btn" class="input-group-addon btn btn-success fileinput-exists" style="margin:3px">
                  <i class="glyphicon glyphicon-open"></i>
                  Upload
                </a>
              </div>
            </form>

Jquery Code :

$('#upload-btn').on('click', function(event) {
        var filesToUpload = inputFile[0].files;
        var projectID = $('#project_id').val();
        if (filesToUpload.length > 0) {
            var formData = new FormData();

            for (var i = 0; i < filesToUpload.length; i++) {
                var file = filesToUpload[i];

                formData.append("file[]", file, file.name);             
            }
            var other_data = $('#form-upload').serializeArray();
            $.each(other_data,function(key,input){
                formData.append(input.name,input.value);
            }); 
            $.ajax({
                url: uploadURI,
                type: 'post',
                data: formData,
                processData: false,
                contentType: false,
                success: function(data) {
                    console.log(data);
                    listFilesOnServer();
                },

Controller Code:

function upload_project_image() {
        if (!empty($_FILES)) {
            $this->load->library('upload');
            $config['upload_path'] = "./assets/uploads";
            $config['allowed_types'] = 'gif|jpg|png|mp4|ogv|zip';
            $this->upload->initialize($config);
            $this->load->library('upload', $config);
            if (!is_dir($config['upload_path'])) {
                mkdir($config['upload_path'], 0777, true);
            }

            $files = $_FILES;
            $project_id = $_POST['projectID'];
            echo $project_id . "--ID";
            $number_of_files = count($_FILES['file']['name']);
            $errors = 0;
  • 写回答

1条回答 默认 最新

  • doubi9615 2016-04-29 11:06
    关注

    I think there is no need to serialize the form separately, if you use FormData then try following-

     // this is what i am using to  upload file and forms data with in the form
     $(document).on('submit','#form-upload',function(){
            var formData=new FormData($('#form-upload')[0]);
            $object=$(this);
            $.ajax({
                url     :   $($object).attr('action'),
                type    :   'post',
                data    :   formData,
                processData:false,
                contentType:false,
                success :   function(responseText)
                            {
                                alert('uploaded successfully');
                                // do what ever you want with responseText
                            },
                error   :   function(e)
                            {
                                alert('hello from here');   
                            }
            });
        });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 vue3加ant-design-vue无法渲染出页面
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决
  • ¥15 processing提取音乐节奏
  • ¥15 gg加速器加速游戏时,提示不是x86架构
  • ¥15 python按要求编写程序