我有兩個zend表單屬於數據庫中的一個表,爲了確保用戶沒有發現它懶得完成它,但我有我的代碼在我的模型中有問題。儘管我嘗試了很多解決方案,但我仍然收到這個錯誤。Zend框架相關
致命錯誤:調用一個成員函數保存()非對象上
public function smmedetailssmmedetails($companyname, $companytradingname)
{
$data = array(
'companyname' => $companyname,
'companytradingname' => $companytradingname,
);
return $this->insert($data);
}
public function smmesdetails2smmedetails($smmeid, $numberemployees, $ownership)
{
$row = $this->find($smmeid)->current();
$row->numberemployees = $numberemployees;
$row->ownership = $ownership;
return $row->save(); //problem lies on this line
}
使用以下代碼/方法
$this ->row->save();
$row->save();
$this ->row->save();
return $this -> row->save();
$ smmeid是主鍵,我拖動表單中的每個表單都有自己的控制器,然後通過單擊下一步轉到下一個表單,我需要這樣才能使信息保留在表格中的同一行上 –