这是我的问题:我需要传递一个参数来编辑 joomla 的表单,所以链接将是这样的:https://mydomain.com/administrator/index.php?option=com_mycom&task=mycom.edit&type=country&id=233。参数“类型”必须发送到我的编辑表单。但我不能通过这种方式在我的“view.html.php”文件中得到它
$input = JFactory::getApplication()->input
$type = $input->getVar("type");
导致链接始终删除“类型”参数