我需要重构或设计方面的帮助:)。我做了我的webapp,效果很好。但是我仍然不能很好地理解 Yii 中的 Ajax 进程。例如,当我使用该$.fn.yiiGridView.update()
方法时,我看到了所有网页的返回,而不仅仅是CGridView
. 这对我来说很有趣。
但是现在:在索引视图中,我使用了CGridView
,但没有寻呼机!这是一个简单的投注游戏网络应用程序。在 index.php 中,我只查看页面上的 10 个投注/结果,10 秒后,我使用 JavaScript 查看下一个 10 个投注/结果,并在 10 秒后再次查看下一个 10 个结果/投注:)。
像这样的简单过程:
- actionIndex() 被调用,它呈现 index.php(index.php 包含设计的 JS 代码,但不包含 webapp 查看结果的 CGridView)
- index.php 渲染 _ajaxIndex.php 文件内容。
- JS 代码计算接下来的 10 个结果,这些结果必须在网页上查看。
- 调用 actionAjaxIndex()。这给出了 _ajaxIndex.php 的更新内容,从 3. 再次重复。
- JS代码再次计算接下来的10个结果......
注意:当管理员在管理网页插入结果时,webapp 必须显示临时结果。这就是为什么我需要刷新_ajaxIndex.php中的summary和round JS变量
控制器
/**
* Lists all models.
*/
public function actionIndex() {
Yii::app()->language='hu';
$model = new Result('search');
$model->unsetAttributes();
if (isset($_GET['Result']))
$model->attributes = $_GET['Result'];
if (isset($_POST['offset']) && $_POST['offset'] >= 0)
$model->offset = $_POST['offset'];
$summary = Result::getCountSavedResults();
$model->isLimited = true;
$this->layout='projector';
$this->render('index', array('model' => $model, 'summary'=>$summary));
//$this->actionAjaxIndex();
}
/**
* List all models by Ajax request.
*/
public function actionAjaxIndex() {
Yii::app()->language='hu';
$model = new Result('search');
$model->unsetAttributes(); // clear any default values
if (isset($_GET['Result']))
$model->attributes = $_GET['Result'];
if (isset($_POST['offset']) && $_POST['offset'] >= 0)
$model->offset = $_POST['offset'];
$summary = Result::getCountSavedResults();
$model->isLimited = true;
$this->renderPartial('_ajaxIndex', array('model' => $model, 'summary'=>$summary));
}
我想在 actionIndex() 中终止此代码重复。但是我不知道该怎么做...我尝试调用 actionAjaxIndex 等。但是在调用 actionAjaxIndex 之前,我从 Yii 收到了 PHP 错误。(汇总变量不存在等)
查看 - Index.php
<!--<h1><?php echo Yii::t('strings','Results'); ?></h1>-->
<?php
echo CHtml::image(Yii::app()->request->baseUrl.'/images/toplista.jpg', "Fogadás");
?>
<script type="text/javascript">
// Initialize the variables for calculating
var summary = <?php echo $summary ?>; // get all stored results
var timeout = 10 * 1000; // in Milliseconds -> multiply with 1000 to use seconds
var current = 0;
var turn = 0;
var rounds = Math.floor(summary / 10);
</script>
<?php $this->renderPartial('_ajaxIndex', array('model'=>$model, 'summary'=>$summary)); ?>
<script type="text/javascript">
// Refresh the CGridView's content in _ajaxIndex.php
window.setInterval("refresh()", timeout);
// Get the offset to the search() to set the criteria
// Increase turn.
function counter(){
turn += 1;
if(turn > rounds){
turn = 0;
}
return turn *10;
}
function refresh() {
<?php
echo CHtml::ajax(array(
'url'=> CController::createUrl("result/ajaxIndex"),
'type'=>'post',
'data'=> array('offset'=>'js: counter()'),
'replace'=> '#ajax-result-grid',
))
?>
}
</script>
查看 - _ajaxIndex.php
<?php
/* @var $model Result */
?>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'ajax-result-grid',
'dataProvider'=>$model->search(),
'columns'=>array(
array(
'header'=>Yii::t('strings','No.'),
'value'=> $model->offset.' + $row+1',
'htmlOptions'=>array('style'=>'width:50px;'),
),
array(
'header'=>Yii::t('strings','team_name'),
'name'=>'team_id',
'value'=>'$data->team->name'
),
array(
'header'=>Yii::t('strings','value'),
'name'=>'value',
'value'=>'$data->value'
),
),
)); ?>
<script type="text/javascript">
// This is need while the admins insert the results during this page is run.
summary = <?php echo $summary ?>;
rounds = Math.floor(summary / 10);
</script>
是的,我想我不太清楚 Yii 中的 Ajax 进程:/。