我尝试使用$this->post()
以 json 格式通过邮件发送数据。例如,我无法得到任何结果$this->post('name')
。
这是代码:
<?php
require(APPPATH . '/libraries/REST_Controller.php');
class user_api extends REST_Controller {
function user_post() {
$user = array(
'id' => null,
'firstname' => $this->post('firstname'),
'lastname' => $this->post('lastname')
);
$result = $this->user_model->insert($user);
if ($result) {
$this->response($result, 200); // 200 being the HTTP response code
} else {
$this->response(NULL, 404);
}
}
}
?>
以 json 格式发送到链接的数据: http: //mydomain.com/myapplication/user_api/user:
{"firstname":"test",
"lastname":"test"
}
数据库中没有数据,就像它无法从中获取数据一样$this->post('firstname')
。
任何想法 ????