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对象?
答案 0 :(得分:0)
尝试在构造函数中加载form_validation
库
function __construct() {
parent::__construct();
$this->load->library('form_validation');
}