使用Codeigniter上传库和Uploadify(Uploadifive)

时间:2013-12-05 03:31:06

标签: php ajax codeigniter jquery uploadify

我有一个“文档”上传表单,我应该通过正常的Codeigniter upload library运行。但是,我需要将其作为Ajax调用。我有一个Uploadifive脚本(我购买的),这是他们的HTML5与Uploadify等价。

我的问题是无法使用Uploadifive jQuery Ajax插件与我的控制器功能配合使用。没有控制台错误,CI错误,并且没有从ajax函数输出错误。实际上,由于页面重定向到我的控制器函数并在下面的控制器函数的第一部分中返回$error = array('error' => $this->upload->display_errors());错误,因此上传模式功能无法正常运行。

有没有人有将Uploadifive与Codeigniter相结合的经验?我的代码有什么突出的地方吗?

请注意,我正在加载所有正确的脚本,库,模型等。此外,还没有编码表单验证。同样,一切都可以在没有Uploadify插件的情况下运行

控制器功能(即upload / add_document):

function add_document() {

    if (!$this->upload->do_upload()) {

        // If file upload failed or is invalid, 
        // display error notification
        $error = array('error' => $this->upload->display_errors());
        $this->load->view('upload', $error);
    }       
    else {

        // If file upload was successful,
        // get 'file_name' of the uploaded document
        $file_uploaded = $this->upload->data();
        $file_name = $file_uploaded['file_name'];

        // Add document to S3
        $query = $this->s3_model->add_document($file_name);
        if($query) {           

            // If successful, return S3 file url 
            $document_url = $query;

            // Add document and form details to db
            $this->content_model->add_doc($document_url);

            // Delete temporary document from local 'uploads' folder
            unlink('uploads/'.$file_name);
        }                   

        $this->load->view('upload');
    }

}

形式:

<? echo form_open_multipart('upload/add_document', 'id="upload-doc-form"') ;?>
    <? echo form_input('title', '', 'placeholder="Title"') ;?><br/>
    <? echo form_textarea('description', '', 'placeholder="Description"') ;?><br/>
    <? echo form_input('company',  '', 'placeholder="Company"') ;?><br/>
    <? echo form_input('company_url', '', 'placeholder="Company URL"') ;?><br/>
    <? echo form_upload('userfile', '', 'id="file-upload"') ;?>
    <br/><br/>
    <? echo form_submit('', 'Upload', 'class="doc-submit"') ;?>
<? echo form_close() ;?>

JS(包含在$(function(){}

var form = $('#upload-doc-form');

$('#file-upload').uploadifive({                 
    'auto': true,
    'buttonText': 'BROWSE',
    'uploadScript': form.attr('action'),
    'onError': function(errorType) {
        alert('The error was: ' + errorType);
    }
});

这是Uploadify附带的 DEFAULT 打包的服务器端脚本,我也没有指出(obvs)。这只是为了向您展示Uploadify如何处理数据。我改为使用控制器...我认为这是问题所在。

<?php
/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

// Set the uplaod directory
$uploadDir = '/uploads/';

// Set the allowed file extensions
$fileTypes = array('jpg', 'jpeg', 'gif', 'png'); // Allowed file extensions

$verifyToken = md5('unique_salt' . $_POST['timestamp']);

if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
    $tempFile   = $_FILES['Filedata']['tmp_name'];
    $uploadDir  = $_SERVER['DOCUMENT_ROOT'] . $uploadDir;
    $targetFile = $uploadDir . $_FILES['Filedata']['name'];

    // Validate the filetype
    $fileParts = pathinfo($_FILES['Filedata']['name']);
    if (in_array(strtolower($fileParts['extension']), $fileTypes)) {

        // Save the file
        move_uploaded_file($tempFile, $targetFile);
        echo 1;

    } else {

        // The file type wasn't allowed
        echo 'Invalid file type.';

    }
}
?>

2 个答案:

答案 0 :(得分:2)

问题是我没有设置(或更改)从Ajax调用发送到我的控制器的文件对象名称。 Codeigniter的UPLOAD库查找名为userfile的文件对象。默认情况下,Uploadifive发送数据字符串fileData

非常简单的编辑 - 我应该抓住的东西......

在Uploadifive Alax功能中,我不得不重命名fileObjName以与CI上传库重合。像这样:

$(function() {
    $('#file-upload').uploadifive({
        'fileObjName': 'userfile',
        ...
    });
}); 

答案 1 :(得分:0)

您是否尝试将选项uploadScript设置为$(this).attr('action')或者可能 <?php echo base_url() . "upload/add_document"; ?>