コード例 #1
0
ファイル: CompanyController.php プロジェクト: abcn/hhgapi
 /**
  * 更新公司介绍
  *
  */
 public function introduce()
 {
     //获取介绍id
     $id = $this->request->get('id');
     //获取介绍内容
     $content = $this->request->get('content');
     $introduce = CompanyIntroduce::find($id);
     if ($introduce) {
         $introduce->content = $content;
         if ($introduce->save()) {
             return return_rest('1', '', '更新成功');
         }
     }
     return return_rest('0', '', '介绍不存在');
 }