由于某种原因,我已经覆盖了Joomla save()函数。
该函数的最后一个语句是return $data->player_id;
,它使用来自DB的数据加载到同一个表单中(这很好!)
问题在于它显示
Save failed with the following error:
即使每个数据字段都正确保存,也可以正确保存。
这是片段
public function save($data) {
$table_one = $this->getTable('Player', 'footballTable', array());
// Bind the data.
$table_one->bind($data);
// Store the data.
$table_one->save($data);
// Some code here...
return $data->player_id;
}