china-distpicker icon indicating copy to clipboard operation
china-distpicker copied to clipboard

getPlaceholder和laravel-admin 1.7.8 不兼容

Open liues1992 opened this issue 6 years ago • 2 comments
trafficstars

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

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

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

liues1992 avatar Nov 11 '19 14:11 liues1992

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

Jackfinal avatar Nov 16 '19 10:11 Jackfinal

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

z-perfe avatar Dec 11 '19 00:12 z-perfe