laravel-admin-extensions / china-distpicker

中国省/市/区(县)三级级联选择器
MIT License
131 stars 71 forks source link

getPlaceholder和laravel-admin 1.7.8 不兼容 #17

Open liues1992 opened 4 years ago

liues1992 commented 4 years ago

Encore\Admin\Form\Field:中的getPlaceHolder定义

    public function getPlaceholder(): string
    {
        return $this->placeholder ?: trans('admin.input').' '.$this->label;
    }

要求返回值是string Encore\ChinaDistpicker\Distpicker 中定义的 protected $placeholder= []; 为数组,使用时报错。

Jackfinal commented 4 years ago

public function getPlaceholder(): string 把string去掉即可

z-perfe commented 4 years ago

我修改了Distpicker.php文件,将 $placeholder = '', __construct 中将其 json_encode, 在render() 中 再次 json_decode 即可。