set_field_upload 在 grocery crud 中不渲染
set_field_upload in grocery crud not rendering
我正在尝试使用 set_field_upload 在名为 "photo" 的数据库字段中上传图像,crud 非常适合 text/dates...等
但是你不能使用文件上传
- 它没有显示为文件按钮,它只是一个文本输入。
- 控制台或网络中没有错误。
- 字段类型是文本,我也尝试了 varchar 类型,但没有成功。
这是代码
try {
$crud = new grocery_CRUD();
$crud->set_table('test');
$crud->set_field_upload('photo', 'assets/uploads/files');
$output = $this->grocery_crud->render();
$this->_example_output($output);
} catch(Exception $e) {
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
我通过更改版本解决了问题,我尝试了 1.5.8 和 1.5.0。
我使用 1.5.5 让它工作
我正在尝试使用 set_field_upload 在名为 "photo" 的数据库字段中上传图像,crud 非常适合 text/dates...等
但是你不能使用文件上传
- 它没有显示为文件按钮,它只是一个文本输入。
- 控制台或网络中没有错误。
- 字段类型是文本,我也尝试了 varchar 类型,但没有成功。
这是代码
try {
$crud = new grocery_CRUD();
$crud->set_table('test');
$crud->set_field_upload('photo', 'assets/uploads/files');
$output = $this->grocery_crud->render();
$this->_example_output($output);
} catch(Exception $e) {
show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
我通过更改版本解决了问题,我尝试了 1.5.8 和 1.5.0。
我使用 1.5.5 让它工作