前端APP
var sendData = {Mobile, Psw, Name};
后台由CI完成简单的查询,插入数据库操作 $Mobile = $this->input->post('Mobile', TRUE); $query = $this->db->get_where('myTable', array('Mobile' => $Mobile), 1); if(0 < $query->num_rows()) { $resultData = array ( 'result' => '号码已经存在' ); echo json_encode($resultData); }
但是现在在前端打印,发现返回的对象是NULL。 想请教一下大家: 1、哪些地方有问题? 2、如何在服务器上对PHP代码进行跟踪调试?
|