我使用笨的表單驗證,它工作正常,但是當,表單驗證失敗,它不顯示驗證錯誤,通過使用 <?php echo validation_errors();?>
我使用表單驗證在CodIgniter
function insertProduct(){
$this->load->library('form_validation');
$this->form_validation->set_rules('pname','ProductName','trimirequired');
if($this->form_validation->run()){
$this->addProduct();
}
else{
$this->load->model('inventory/stock');
}
請幫助我是新來的codeIgniter
我不明白'...?你確實有一個錯字:'trimirequired'應該是'trim | required'。 – 2012-02-08 04:33:12
我在我的視圖中使用'validation_errors()',長代碼,不能在這裏給出,當我使用'trim | required'時,它不起作用 – 2012-02-08 04:45:17
您應該在else {}中加載視圖,爲什麼你在那裏加載模型嗎? – stef 2012-02-08 13:02:37