我正在使用 cakephp 2.6.7。
在模型/经销商帐户中:
<?php
class ResellerAccount extends AppModel {
var $name = "resellerAccounts";
}
?>
我的表名是 reseller_accounts。
在控制器中:
function moneySentToreseller($id = null) {
if ($id) {
$this->loadModel('ResellerAccount');
$this->ResellerAccount->id = $id;
$this->ResellerAccount->saveField("ResellerAccount.status", "sent");
$msg = '
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong> Money send to this reseller succeesfully </strong>
</div>';
$this->Session->setFlash($msg);
}
return $this->redirect($this->referer());
}
但是该字段没有被更新。我的代码出了什么问题?