Commit ca667c97 authored by hujun's avatar hujun

错误处理

parent 5c0045b7
......@@ -97,10 +97,11 @@ class News extends Basic
$data['publisher_id'] = $this->userId;
$data['cover_plan'] = $this->params['file_img'];
$data['s_label_id'] = $this->params['s_label_id'];
$num = $this->m_news->editData($data, $this->params['id']);
if ($num < 1) {
return $this->response(101, '新增失败!');
try {
$this->m_news->editData($data, $this->params['id']);
} catch (\Exception $e) {
return $this->response(101, '新增或编辑失败!');
}
return $this->response(200, '新增成功!');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment