嘿,我是joomla中的新成員,並且創建了一個名爲profile的組件。我在文件夾控制器/ setting.php中出現錯誤。 這是我的代碼;
類ProfileControllerSetting擴展JControllerForm {
function save(){
parent::save();
if($this->task=='save')
$this->setredirect('index.php?option=com_profile');
}
function cancel(){
$this->setredirect('index.php?option=com_profile');
}
}
錯誤來臨是:Strict Standards: Declaration of ProfileControllerSetting::cancel() should be compatible with JControllerForm::cancel($key = NULL)
和
Strict Standards: Declaration of ProfileControllerSetting::save() should be compatible with JControllerForm::save($key = NULL, $urlVar = NULL)
請幫助我。
上面的方法我都試過,但問題是相同 –
你有沒有嘗試添加'NULL'爲默認值?看看我的答案,我剛剛編輯。 – Marschal
@ R.J請耐心等待,看看是否有幫助。 – Marschal