2

我需要重构或设计方面的帮助:)。我做了我的webapp,效果很好。但是我仍然不能很好地理解 Yii 中的 Ajax 进程。例如,当我使用该$.fn.yiiGridView.update()方法时,我看到了所有网页的返回,而不仅仅是CGridView. 这对我来说很有趣。

但是现在:在索引视图中,我使用了CGridView,但没有寻呼机!这是一个简单的投注游戏网络应用程序。在 index.php 中,我只查看页面上的 10 个投注/结果,10 秒后,我使用 JavaScript 查看下一个 10 个投注/结果,并在 10 秒后再次查看下一个 10 个结果/投注:)。

像这样的简单过程:

  1. actionIndex() 被调用,它呈现 index.php(index.php 包含设计的 JS 代码,但不包含 webapp 查看结果的 CGridView)
  2. index.php 渲染 _ajaxIndex.php 文件内容。
  3. JS 代码计算接下来的 10 个结果,这些结果必须在网页上查看。
  4. 调用 actionAjaxIndex()。这给出了 _ajaxIndex.php 的更新内容,从 3. 再次重复。
  5. 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 进程:/。

4

1 回答 1

0

实际上,您已经向前迈出了一大步,使用相同的模板 -_ajaxIndex.php用于 AJAX 调用和初始页面加载。但是,是的,您可以在这个方向上走得更远——也可以使用单个操作

在这个动作中应该检查方法是如何被调用的,通过 AJAX 与否。根据结果​​,您可以呈现整个页面 - 或仅呈现部分页面。

通常这个检查很简单,就像......

if (Yii::app()->request->isAjaxRequest) { ... }

但是这里有一个问题:这个检查依赖于自定义的 HTTP Header HTTP_X_REQUESTED_WITH,许多 JS 库使用它来实现自己的 AJAX 例程。可悲的是,一些代理服务器会丢弃此标头,因此它可能不可靠。100% 确定,只需在您的 AJAX 助手中提供另一个参数(最简单的是ajax),然后检查这个参数(也)。

于 2013-09-17T21:21:10.253 回答