面对页面加载Ajax更新的问题

时间:2013-10-20 17:31:05

标签: php jquery ajax yii

我在使用ajax在页面加载中显示内容时遇到了麻烦。 ajax在相应的控制器中调用正确的操作。我更新数据库的动作代码的第一部分工作正常。但我调用renderPartial的部分无效。

**编辑***

这里是控制器动作::

public function actionUpdateProductData() {
    Yii::import('application.components.DataScraper.*');
    require_once('GetProductData.php');

    $productRealTime = RealTime::model()->findAll();



    if (count($productRealTime) === 0) {

        $symbolData = new GetProductData();
        $symbolData->getAmazonProductData();
    } else {


        echo CJSON::encode( array(
            'status' => 'OK',
            'div' => $this->renderPartial('_productDataGrid', array(
                            'model' => $productRealTime), 
                            true, true ),
        ));

    }
}

if部分工作正常。但是其他部分不起作用。

这是视图index.php ::

    <?php
        /*
         * Include the ajax Stock update script
         * 
         */
        $baseUrl = Yii::app()->baseUrl;
        $cs = Yii::app()->getClientScript();
        $cs->registerScriptFile($baseUrl . '/js/ajaxProductDataUpdate.js');
?>

<div>
    <hr>
    <ul class="breadcrumb">
        <li>
            <a href="#">Home</a> <span class="divider">/</span>
        </li>
        <li>
            <a href="#">Product Info</a>
        </li>
    </ul>
    <hr>
</div>



<div class="span-10">

    <div id="section2">

    </div>

</div>

这是局部视图文件_productDataGrid.php

 <?php

$this->widget('bootstrap.widgets.TbGridView', array(
    'id' => 'real-time-grid',
    'dataProvider' => $model->search(),
    'filter' => $model,
    'columns' => array(
        'id',
        'name',
        'category',
        'price'
        'rating'

        array(
            'class' => 'bootstrap.widgets.TbButtonColumn',
        ),
    ),
));
?>

这是制作ajax请求的jQuery文件

    var productParameters = {
    ajaxUpdate: function() {
        $.ajax({
            url: "/ProductAnalysis/index.php/realTime/updateProductData",
            type: "GET",
            dataType:"json",
            error: function(xhr, tStatus, e) {
                if (!xhr) {
                    alert(" We have an error ");
                    alert(tStatus + "   " + e.message);
                } else {
                    alert("else: " + e.message); // the great unknown
                }
            },
            success: function(data) {
                $.fn.yiiGridView.update('real-time-grid', {
                    data: $(this).serialize()
                });
            }
        });
    }
};

$(document).ready(function() {
    productParameters.ajaxUpdate();

});

加载页面/realTime/index.php后,我收到错误消息

    else:
undefined

显然ajax调用失败了,但我不知道如何修复它。同样在Firebug中,控制器中的echo date()函数正在工作,但Gridview无法正常工作。

请提供一些有关如何解决此问题的帮助。让我知道我在哪里做错了。我似乎无法在这方面取得任何进展。

提前致谢,

Maxx

2 个答案:

答案 0 :(得分:0)

您的actionUpdateStockData()正在回显实际JSON内容编码之前的日期。因此,您没有传输正确的JSON,XHR将失败。

删除echo date ...行,你应该没问题。正如你所说的那样 - 你应该为count(RealTime::model()->findAll()) === 0

的情况添加一些回复

答案 1 :(得分:0)

似乎gridview小部件不能与findall()一起使用。所以我将数据提取器更改为简单模型,现在可以正常工作。

这是工作代码::

public function actionUpdateStockData() {
    Yii::import('application.components.DataScraper.*');
    require_once('GetStockData.php');
    $productRealTime = new RealTime();


    if (count($productRealTime->model()->findAll()) === 0) {

        $symbolData = new GetproductData();
        $symbolData->getAmazonProductData();
    } else {


        echo CJSON::encode( array(
            'status' => 'success',
            'div' => $this->renderPartial('_productDataGrid', array(
                            'model' => $productRealTime), 
                            true, true ),
        ));

    }
}