我使用codeigniter构建自己的REST Web服务,该应用程序有一个名为“调用”的资源,可以通过 POST 方法访问它,
“调用”函数使用此内容类型通过 Curl 调用接收四个参数[id,manager,department,level]作为json对象:application / json
然后我使用codeigniter form_validation()库验证请求,如果 form_validation()
没有错误,则返回响应数组以下是通话功能代码
function calls_post() {
$this->load->model('api/central');
$this->load->library('form_validation');
//validation rules
$this->form_validation->set_error_delimiters('', '');
$this->form_validation->set_rules('id', 'id', 'required|numeric');
$this->form_validation->set_rules('manager', 'manager', 'required|numeric');
$this->form_validation->set_rules('department', 'department', 'required');
$this->form_validation->set_rules('level', 'level', 'required|numeric');
if ($this->form_validation->run() === FALSE) {
$employeeId = $this->form_validation->error('id') ? $this->form_validation->error('id') : $this->post('id');
$manager = $this->form_validation->error('manager') ? $this->form_validation->error('manager') : $this->post('manager');
$department = $this->form_validation->error('department') ? $this->form_validation->error('department') : $this->post('department');
$level = $this->form_validation->error('level') ? $this->form_validation->error('level') : $this->post('level');
$response = array(
'status' => FALSE,
'error' => 'We don\'t have data to display, Minimum information required to process the request is missing',
'authenticated' => true,
'id' => $employeeId,
'manager' => $manager,
'department' => $department,
'level' => $level
);
$this->response($response, 200);
} else {
$response = $this->central->calls_get($this->post('id'), $this->post('manager'), $this->post('department'), $this->post('level'));
$this->response($response);
}
}
有什么建议吗? :)
答案 0 :(得分:4)
$_POST = json_decode(file_get_contents("php://input"), true);
$this->form_validation->set_rules('id', 'id', 'required|numeric');
$this->form_validation->set_rules('department', 'department', 'required');
if($this->form_validation->run() == TRUE)
{
$id = $this->input->post('id');
$department = html_escape($this->input->post('department'));
echo $id."<br>".$department;
}
else
{
echo "false";
}