我正在尝试使用批量分配雄辩功能创建实体...
$new = new Contact(Input::all());
$new->save();
问题是这样,每个字段都填充了一个空字符串,而不是null
我预期的值。
我目前正在开发系统,但仍然没有定义一些表列,这就是为什么使用这种方法,以避免将每个新字段添加到$fillable
数组和new Contact(array(...));
...
另外我在这个表中有大约 20 个字段,所以有一个数组有点难看,比如
$new = new Contact(array(
'salutation' => Input::get('salutation'),
'first_name' => Input::get('first_name'),
'last_name' => Input::get('last_name'),
'company_id' => Input::get('company_id'),
'city' => ...
...
));
有关如何执行此操作或修复的任何提示?
更新App::before()
到目前为止,我已经在过滤器中通过 array_filter 解决了这个问题。
更新过滤器有点乱。我最终会这样做:
public static function allEmptyIdsToNull()
{
$input = Input::all();
$result = preg_grep_keys ( '/_id$/' , $input );
$nulledResults = array_map(function($item) {
if (empty($item))
return null;
return $item;
}, $result);
return array_merge($input, $nulledResults);
}
在我的functions.php中。
if ( ! function_exists('preg_grep_keys'))
{
/**
* This function gets does the same as preg_grep but applies the regex
* to the array keys instead to the array values as this last does.
* Returns an array containing only the keys that match the exp.
*
* @author Daniel Klein
*
* @param string $pattern
* @param array $input
* @param integer $flags
* @return array
*/
function preg_grep_keys($pattern, array $input, $flags = 0) {
return array_intersect_key($input, array_flip(preg_grep($pattern, array_keys($input), $flags)));
}
}
现在只使用以“_id”结尾的字段。这是我最大的问题,好像没有关系NULL
,数据库会因为找不到外键“”而抛出错误。
完美运行。任何意见?