2番目のビューを登録する必要があるコンポーネントがあります。ビューvarialbeを設定するためにURLをエンコードすると、次のようになります。
http://www.mysite.com/index.php?option=com_mycom&view=view1
に
http://www.mysite.com/index.php?option=com_mycom&view=view2
View2は表示されません。
コントローラに2番目のビューを登録する必要がありますか?参考文献を教えてもらえますか?グーグル検索はゼロになっている。
編集
view2コード:
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport( 'joomla.application.component.view');
/**
* HTML View class for the mls Component
*
* @package UniversalDynamicMedia.com
* @subpackage Components
*/
class mlsViewlist extends JView
{
function display($tpl = null)
{
$model = &$this->getModel();
$array = $model->mlsListData();
$disparray = foreach ($array as list($a,$b,$c,$d,$e)) {
echo <tr><td>$a</td><td>$b</td><td>$c</td><td>$d</td><td>$e</td></tr>
}
$this->assignRef( 'disparray', $disparray );
parent::display($tpl);
}
}
?>