我需要上传多张图片,我阅读了很多不起作用的文档,我看到了这一点:
我做了所有他们说的话,当我在我的视图中调用他们的控制器“multiuploader”时,它工作得很好,但是,当我在我自己的控制器中使用时,它不起作用。它将图像保存到数据库和文件夹中,但是我无法在表单中看到任何内容,例如添加的图像或列表中的链接,即使我在使用“multiuploader”之前保存在同一个表中。 BR />
如果你可以帮助我,我会很高兴。在此先感谢。
这是我的控制人。
public function Test() {
$this->crud = new Grocery_CRUD_Multiuploader();
$this->crud->set_table('multi_uploader_gallery');
$this->crud->set_subject('Document');
$this->crud->fields("title", "my_pictures", "my_files", "my_mail_attachments");
$this->crud->columns("title", "my_pictures", "my_files", "my_mail_attachments");
$config = array(
/* Destination directory */
"path_to_directory" => 'assets/test',
/* Allowed upload type */
"allowed_types" => 'gif|jpeg|jpg|png',
/* Show allowed file types while editing ? */
"show_allowed_types" => true,
/* No file text */
"no_file_text" => 'No Pictures',
/* enable full path or not for anchor during list state */
"enable_full_path" => false,
/* Download button will appear during read state */
"enable_download_button" => true,
/* One can restrict this button for specific types... */
"download_allowed" => 'jpg'
);
$this->crud->new_multi_upload("my_pictures", $config);
$output = $this->crud->render();
$data['contents'] = 'contents';
$data = array_merge($data, (array) $output);
$this->load->view('template', $data);
}
当我使用我的视图但示例表没有显示任何错误时,但是当我使用我的表时它显示了这个:
答案 0 :(得分:0)
我发现错误,我没有在路径的末尾加上 / ,并且给我所有这些问题
"path_to_directory" => 'assets/test/',
至于先前的错误,我做了不同的测试,更改了表的名称,它们就消失了。
答案 1 :(得分:-1)
我也遇到了此错误,这是由多重上传列中已有的旧数据(未序列化)引起的。您必须序列化它们或清空字段。