我正在尝试软删除记录,但是当我更新记录时,我还会得到 6 条新的空记录。这是我的编辑代码
public function del($id = null){
$dt = $this->Store->findById($id);
$dt["Store"]["status"] = 0;
if($this->Store->save($dt)){
$this->Session->setFlash("Your Store has been Deleted");
$this->redirect("/stores/");
}
}