我经常使用patchEntity
函数用表单数据来保护我的实体,即使使用ajax请求它也能正常工作。
但是当我尝试使用JSON数据从ajax请求插入数据时,patchEntity无法检索数据。
我的ajax请求非常简单:
var rate = function (user, rate, success, error) {
$.ajax({
type: "POST",
url: baseUrl + 'rate/add',
data: {
id: this.id,
user: user.id
rate: rate
},
dataType: 'json',
success: success,
error: error
});
});
在我的速率控制器中,我的添加功能如下:
public function add()
{
if ($this->request->isAjax()) {
$this->layout = 'ajax';
$rate = $this->Rate->newEntity();
if ($this->request->is('post')) {
$rate = $this->Rate->patchEntity($rate, $this->request->data);
if ($rate->errors()) {
$this->set([
'status' => 500,
'message' => $rate->errors()
]);
} else {
if ($this->rate->save($rate)) {
$this->set([
'status' => 200
]);
} else {
$this->set([
'status' => 500,
'message' => $rate->errors()
]);
}
}
return $this->render('/Ajax/result');
}
}
这引发了一个例外:
无法插入行,缺少部分主键值。拿到 (, ,),期待(id,用户)
我可以使用此代替$this->Rate->patchEntity($rate, $this->request->data);
$rate['id'] = $this->request->data['id'];
$rate['user'] = $this->request->data['user'];
$rate['rate'] = $this->request->data['rate'];
我需要将哪种数组传递给patchEntity
函数才能使其正常工作?
答案 0 :(得分:1)
感谢ndm的评论,我检查了Rate Entity并刚刚删除了这部分,这是由bake自动生成的:
protected $_accessible = [
'rate' => true,
];