doulao3078 2014-12-31 04:06
浏览 31
已采纳

如何在杂货店中设置自定义验证消息

$crud = new grocery_CRUD();
$crud->set_table('generate_eblskyid');
$crud->set_rules('salt', 'Salt Code','callback_check_salt');
$output = $crud->render();

then in the call back function i did the following

function check_salt($str)
{
   $salt = $_POST['salt'];
   if($salt > 5)
   {
      $this->get_form_validation()->set_message('salt',"Salt value must be less then FIVE");
      return FALSE;
   }
}

When I go to add record if I give a salt value below five the is inserted successfully but when I give a value greater then five it says "An error has occurred in insert" without displaying my custom message.

What I am doing wrong ??

  • 写回答

1条回答 默认 最新

  • dos8244 2014-12-31 09:50
    关注

    Your check_salt($str) function should be like this

    function check_salt($str)
    {
    
       if($str > 5)
       {
          $this->form_validation->set_message('check_salt',"Salt value must be less then FIVE");
    
          return false;
       }else{
          return true;
       }
    }
    

    In set_message function, the callback function name 'check_salt' should be given, not the field name 'salt' This should solve your problem.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号