如何在Codeigniter中使用Ajax上传文件 [英] How to upload file using ajax in codeigniter

查看:53
本文介绍了如何在Codeigniter中使用Ajax上传文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用ajax上传文件以及其他参数.但是,文件未上载.

I am trying to upload a file along with other parameters using ajax. However, the files are not getting uploaded.

表格代码

<form id="first_form" method="post" enctype="multipart/form-data">
    <input type="file" id="file" name="file" accept="image/*" onchange="loadFile(event)">
    <input type="text" data-validation="url" class="form-control" id="first_name" name="first_name" placeholder="First Name" />
    <input type="text" class="form-control" id="last_name" name="last_name" placeholder="Last Name" />  
    <input type="image" src="<?php echo base_url(); ?>assets/images/icon/_Save.png" class="Save-container img-circle" id="submit_first_form">
</form>

脚本代码

<script type="text/javascript">
  $(document).ready(function() {
    $("#submit_first_form").click(function(event) {
    event.preventDefault();
    var file = $("input#file").val(); 
    var first_name = $("input#first_name").val();
    var last_name = $("input#last_name").val();

    jQuery.ajax({
        type: "POST",
        url: "<?php echo base_url(); ?>" + "student/add_data",
        dataType: 'json',
        data: {
            file: file, 
            first_name: first_name,
            last_name: last_name
        },
        success: function(res) {
        if (res)
            {
                console.log(res);
            }
        }
    }); }); });
</script>

控制器代码

public function add_data()
    {
        $data = array(
            'file' => $this->input->post('file'),
            'first_name' => $this->input->post('first_name'),
            'last_name'=>$this->input->post('last_name')
        );

        $status = "";
        $msg = "";
        $file_element_name = $data['file'];

        $config['upload_path'] = 'www.localhost.com/project/assets/supplier';
        $config['allowed_types'] = 'gif|jpg|png|doc|txt';
        $config['max_size'] = 1024 * 8;
        $config['encrypt_name'] = TRUE;

        $this->load->library('upload', $config);

        if (!$this->upload->do_upload($file_element_name))
            {
                $status = 'error';
                $msg = $this->upload->display_errors('', '');
            }
        else
            {
                $data = $this->upload->data();
                //$data['file_name']
                $status = "success";
                $msg = "File successfully uploaded";
            }
        echo json_encode(array('status' => $status, 'msg' => $msg));
    }

我进入控制台的错误是:

Error that i am getting in console is:

{状态:错误",信息:您没有选择要上传的文件."}

{status: "error", msg: "You did not select a file to upload."}

谁能告诉我如何上传文件

Can anyone please tell how to upload file

推荐答案

尝试将此代码用于脚本:

Try Using This code for script:

<script type="text/javascript">
    $(document).ready(function() {
    $("#submit_first_form").click(function(event) {
    event.preventDefault();
    var form_data = new FormData($('#first_form')[0]);

    jQuery.ajax({
        type: "POST",
        url: "<?php echo base_url(); ?>" + "student/add_data",
        data: form_data,
        processData: false,
        contentType: false,
        success: function(res) {
        if (res)
            {
                console.log(res);
            }
        }
    }); }); });
</script>

这篇关于如何在Codeigniter中使用Ajax上传文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆