编程语言
首页 > 编程语言> > php-Yii2 Pjax无法正常工作,重新加载整个页面

php-Yii2 Pjax无法正常工作,重新加载整个页面

作者:互联网

在操作内部使用file_get_contents($url)并使用Pjax加载该操作时,将重新加载整个页面.

In controllers/SiteController.php

public function actionAbout()
{
    $url = 'http://api.dar.fm/topsongs.php?q=Music&page_size=20';
    $xml = file_get_contents($url);

    Yii::$app->view->params['xmldata'] = $xml;
    return $this->render('about');
}

In layouts/main.php

<?php Pjax::begin(); ?>
   <a href="/yiidev/web/index.php?r=site/home">Home</a> 
   <a href="/yiidev/web/index.php?r=site/about">About</a>
   <a href="/yiidev/web/index.php?r=site/contact">Contact us</a>  
<?php Pjax::end(); ?>

对于Home和Contact链接,仅更新pjax begin()和end()之间的区域,但对于About链接,整个页面将重新加载.

如果我从actionAbout()中删除file_get_contents()调用,则不会重新加载页面.我相信问题与使用file_get_contents()从外部网址获取内容有关

解决方法:

该问题是由于ajax超时引起的. file_get_contents()花费了更多时间执行,因为它正在读取外部URL,并且发生超时.通过增加超时值可以解决此问题,如下所示.

Pjax :: begin([‘timeout’=> 5000]);

参考
https://github.com/yiisoft/yii2/issues/8819

标签:yii2,pjax,php
来源: https://codeday.me/bug/20191028/1950605.html