尝试使用 OctoberCMS 后端中的插件将具有类型fileupload
和模式的表单字段添加image
到某个页面,但出现错误。文本、下拉列表等类型工作正常。
当我将字段名称设置viewBag[photo]
为时出现错误"Call to a member function hasRelation() on array" on line 81 of [path]/public/modules/backend/traits/FormModelWidget.php"
。
当我将名称设置为 justphoto
我得到"Call to undefined method October\Rain\Halcyon\Builder::hasRelation()" on line 786 of [path]/public/vendor/october/rain/src/Halcyon/Builder.php"
.
use System\Classes\PluginBase;
use Event;
class Plugin extends PluginBase
{
public function boot()
{
Event::listen('backend.form.extendFields', function($widget) {
if (! $widget->getController() instanceof \RainLab\Pages\Controllers\Index) {
return;
}
if (! $widget->model instanceof \RainLab\Pages\Classes\Page) {
return;
}
switch ($widget->model->fileName) {
case 'about.htm':
$widget->addFields([
'viewBag[photo]' => [
'label' => 'Photo',
'mode' => 'image',
'imageWidth' => '200',
'imageHeight' => '300',
'useCaption' => true,
'thumbOptions' => [
'mode' => 'crop',
'extension' => 'auto',
],
'span' => 'auto',
'type' => 'fileupload',
],
], 'primary');
break;
}
});
}
}