我有一个菜单的主视图,可以帮助我显示另一个视图。它与此类似:
<div id="page">
<div id="menu">
<a href="controller/page1">Page1</a>
<a href="controller/page2">Page2</a>
</div>
<div id="content">
<!-- Page1 or Page2 are displayed here -->
</div>
</div>
我正在使用php的Yii框架。这使我不能使用<?php include("menuview.php"); ?>
。所以我正在寻找一个不同的解决方案。我可以用Ajax做到这一点,但我也希望链接更改为mypage / controller / Page2。使用Ajax我只能得到它:mypage / controller / index#Page2
答案 0 :(得分:0)
在主视图中,而不是包含do
<?php echo $this->renderPartial('_page1', array('model'=>$model)); ?>
更新:
根据您的喜好protected / views / controller / page1.php 和 protected / views / controller / page2.php 内容
保护/视图/布局/ custom.php:
<?php $this->beginContent('//layouts/main'); ?>
<div id="page">
<div id="menu">
<?php echo CHtml::ajaxLink('Page1', array('controller/page1'), array('update' => '#content')); ?>
<?php echo CHtml::ajaxLink('Page2', array('controller/page2'), array('update' => '#content')); ?>
</div>
<div id="content">
<?php echo $content; ?>
</div>
</div>
<?php $this->endContent(); ?>
保护/控制器/ ControllerController.php:
class ControllerController extends Controller {
/**
* @var string the default layout for the views.
*/
public $layout = '//layouts/custom';
public function actionPage1() {
if (Yii::app()->request->isAjaxRequest)
$this->renderPartial('page1');
else
$this->render('page1');
}
public function actionPage2() {
if (Yii::app()->request->isAjaxRequest)
$this->renderPartial('page2');
else
$this->render('page2');
}
}
UPDATE2:
如果您需要更改地址栏中的链接,那么您唯一的选择是使用常规链接而不是ajax <?php echo CHtml::link('Page1', array('controller/page1')); ?>
使用ajax首选方法是使用你提到的哈希。