我正在尝试使用cakephp编辑记录,但是编辑所有内容都希望列的数据类型是enum。我尝试了很多,但我无法使用。我正在给我的代码。
if (!empty($this->request->data)) {
if ($this->Event->save($this->request->data)) {
$this->Session->setFlash(__('The event has been saved'));
}
else
{
$this->Session->setFlash(__('The event could not be saved. Please, try again.'));
}
}
我的更新查询显示如下:
更新reserved
。events
设置performer
=' dj',category_id
= 8,price_multiplier
= 1,{{1 }} =' 2014-03-12',event_date
=' no',recur_week
= 1 WHERE id
。reserved
。events
=' 1'
此处price_multiplier列未正确更新。 注意:如果我可以像price_multiplier =' 1'那样进行查询然后我的查询正在更新。我被困在上面,任何想法?