**新增记录**
使用Model插入记录,成功则提示新增成功,失败则提示新增失败。
* 定义
~~~
/**
* 添加记录
*
* @param mixed $model
* @param array $data
* @return void
*/
protected function _add($model, $data)
{
$model = $this->buildModel($model);
if ($model->create($data)) {
$this->success('添加成功', self::JUMP_REFERER);
} else {
$this->error('添加失败');
}
}
~~~
* 使用
~~~
$this->_add(MenuModel::class, $data);
~~~