"保存失败,出现以下错误:"覆盖SAVE()之后 - Joomla 2.5

时间:2014-07-09 17:35:06

标签: php joomla

由于某种原因,我已经覆盖了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;
}

1 个答案:

答案 0 :(得分:1)

在文件末尾写下这一行:

return true;

了解更多信息,请点击this link