Codeigniter在图片上传后没有让我上传表格

时间:2010-05-10 11:11:25

标签: php codeigniter

我对codeigniter还很新。我遇到的问题是文件上传很好,它写入数据库没有问题但它只是没有返回上传表单。相反,它保留在do_upload中并且不显示任何内容。更奇怪的是,幕后有一些源代码似乎是当您没有选择要上传的图像时出现的消息。有人能说出我的错误,因为我想在提交后回到我的上传表格。提前致谢。以下是我的代码:

控制器:

function do_upload()
{
    if(($error = $this->Upload_model->do_upload()) === true)
    {

        $this->load->view('home/upload_form');

    }else{

        $this->load->view('home/upload_success', $error); 

    }

}

型号:

function do_upload()
{
    $config['upload_path'] = './uploads/';
    $config['allowed_types'] = 'gif|jpg|png';
    $config['max_size'] = '2000';

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

    if ( ! $this->upload->do_upload())
    {
        $error = array('error' => $this->upload->display_errors());

        return $error;
    }   
    else
    {
        $data = $this->upload->data();
        $full_path = 'uploads/' . $data['file_name'];

        $spam = array(
            'image_url' => $full_path,
            'url' => $this->input->post('url')
        );

        $id = $this->input->post('id');

        $this->db->where('id', $id);
        $this->db->update('NavItemData', $spam);

        return true;

    }
}

查看(称为upload_form):

<html>
<head>
<title>Upload Form</title>
</head>
<body>



<?php if(isset($buttons)) : foreach($buttons as $row) : ?>


<h2><?php echo $row->image_url; ?></h2>
<p><?php echo $row->url; ?></p>
<p><?php echo $row->name; ?></p>
<p><?php echo anchor("upload/update_nav/$row->id", 'edit'); ?></p>


<?php endforeach; ?>
<?php endif; ?>

</body>
</html>

以下是实际的上传表单:

<html>
<head>
<title>Upload Form</title>
</head>
<body>



<?php echo form_open_multipart('upload/do_upload');?>
<?php if(isset($buttons)) : foreach($buttons as $row) : ?>
<h2><?php echo $row->name; ?></h2>
<input type="file" name="userfile" size="20" />
<input type="hidden" name="oldfile" value="<?php echo $row->image_url; ?>" />
<input type="hidden" name="id" value="<?php echo $row->id; ?>" />
<br /><br />
<label>Url: </label><input type="text" name="url" value="<?php echo $row->url; ?>" /><br /><br />
<input type="submit" value="submit" />

</form>

<?php endforeach; ?>
<?php endif; ?>

</body>
</html>

2 个答案:

答案 0 :(得分:1)

您是否尝试过redirect()函数?

redirect('upload');

答案 1 :(得分:0)

您的源代码中有一些非常令人困惑的部分(例如,为什么视图在不包含上传表单时称为上传表单。)

我在控制器中看到一个问题,即条件将始终执行第一个分支。所以你可能想把它改成:

if(($error = $this->Upload_model->do_upload()) === true)

这将捕获错误并在出错时执行第二个分支。如果这没有帮助,请尝试发布您的上传表单。