使用TP 3.2框架
public function add_post(){ //驗證規則 $rule=array( array('name','require','請輸入姓名',1),//必須驗證name ); $m=M('user'); //獲取name,sex,contact數據到模型,並驗證 if(!$m->field('name,sex,contact')->validate($rule)->create()) $this->error($m->getError()); $result=$m->add(); if(!$result) $this->error('添加失敗'); $this->success('添加成功',U('dir')); }
驗證規則也可以寫到模型裡,但我感覺有些麻煩,一是有時候不同頁面驗證的方式會不一樣,二是看到這個add_post事件裡的代碼,就清楚要接收什麼數據,如何驗證數據能夠在第一眼有個大致了解,所以總結出了此方式。