私はCodeigniterプロジェクトにRESTful Codeigniter APIをインストールしました。私はAPIの例を試して、http://textilexports.com/donate/api/example/users URLでChromeのPostman Rest Clientを呼び出して、Postのレスポンスでそのエラーが発生しました。投稿リクエストがうまく機能しないCodeigniter
{
"id": 100
"name": null
"email": null
"message": "Added a resource"
}
public function users_post()
{
// $this->some_model->update_user(...);
$message = [
'id' => 100, // Automatically generated by the model
'name' => $this->input->post('name'),
'email' => $this->input->post('email'),
'message' => 'Added a resource'
];
$this->set_response($message, REST_Controller::HTTP_CREATED);
}
私は同じ問題があります。あなたはこの問題を解決しましたか? –