我正在尝试使用 cakephp 计算帖子的浏览量,但使用此代码无法节省
$this->autoRender=false;
$unformattedData = $this->GeneralNews->findById($id);
$data = $unformattedData['GeneralNews'];
$total = $data['views'];
$total = $total+1;
$this->GeneralNews->views =$total;
print_r($this->GeneralNews->views);
$this->GeneralNews->save($this->request->data);
print_r 向我展示了已经在表中添加的视图 +1 .. 但它从未保存在数据库中 .. 有什么问题?