如何在被调用的布局上激活joomla模型。我有以下网址结构
/index.php?option=com_mycomponent&view=my_view&layout=edit&id=3
如果应该调用layout=edit
模型
答案 0 :(得分:1)
检查视图中的布局:
if (JFactory::getApplication()->input->getWord('layout') == 'edit')
{
// call your model here
}
答案 1 :(得分:0)
你可以这样做:
/index.php?option=com_mycomponent&task=my_view.edit&id=3