作者 sgj
1 个管道 的构建 通过 耗费 1 秒

修改进行页面表单提交

... ... @@ -14,6 +14,14 @@ use cmf\controller\HomeBaseController;
class EagageController extends HomeBaseController
{
public function engagePost(){
dump(input());
$data=input();
$result=db('engage')->insert($data);
if ($result==1){
$this->success('');
}else{
$this->error('');
}
}
}
\ No newline at end of file
... ...