mirror of https://gitee.com/karson/fastadmin.git
优化CRUD代码
parent
9cadda6c3f
commit
5f35be92b5
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
public function {%methodName%}($value, $data)
|
public function {%methodName%}($value, $data)
|
||||||
{
|
{
|
||||||
$value = $value ? $value : (isset($data['{%field%}']) ? $data['{%field%}'] : '');
|
$value = $value ?: ($data['{%field%}'] ?? '');
|
||||||
$valueArr = explode(',', $value);
|
$valueArr = explode(',', $value);
|
||||||
$list = $this->{%listMethodName%}();
|
$list = $this->{%listMethodName%}();
|
||||||
return implode(',', array_intersect_key($list, array_flip($valueArr)));
|
return implode(',', array_intersect_key($list, array_flip($valueArr)));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue