0
 var trans = { 
     amount: $('#container input:first-child').val(),
     note: $('#container input:last-child').val()
    };  // javascript

 trans =  {
     "amount":"",
     "note":"",
 }  // json 

$trans = $this->input->post('trans');
$t = json_decode($trans);

$amount = $t->amount;
$note = $t->note;

$this->form_validation->set_rules('amount', 'Amount', 'required');

エラーは

  Call to a member function set_rules() on a non-object in......

json オブジェクトをどのように検証しますか?

4

1 に答える 1

0

form_validationコンストラクターにライブラリをロードしてみてください

function __construct() {
    parent::__construct();
    $this->load->library('form_validation');
}    
于 2013-01-15T09:22:59.070 に答える