我正在使用cake php创建restfull web服务。使用json格式的索引,视图方法的工作。我的问题是添加方法。
我正在尝试发布这样的数据
url: http://localhost/locationApp/details.json
参数:USER_ID = 7 位置= 90
但不是保存数据到DB($ this-> request-> data)是空的。为什么?这在网页上运行良好。
这是我的添加功能
public function add() {
if ($this->request->is('post')) {
$this->Detail->create();
pr($this->request->data);die;
if ($this->Detail->save($this->request->data)) {
$this->Session->setFlash(__('The detail has been saved.'));
return $this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The detail could not be saved. Please, try again.'));
}
}
}