对于一个项目,我需要使用cakePHP创建一个rest API。 Ans我使用邮递员对其进行测试。
我已经按照食谱创建了路线。但是当我尝试路线时,我发现我的路线并没有考虑所有的json参数。
谢谢您的帮助
if ($this->request->is('post')){
$user = $this->Auth->identify();
if ($user){
$this->Auth->setUser($user);
$response = array(
"status" => "Success",
"data" => $user
);
$this->set(compact('response'));
}else{
var_dump($this->request->getData());
$response = array(
"status" => "error : wrong login or password",
"data" => ""
);
$this->set(compact('response'));
}
}
}