phpfox ajax返回空

时间:2015-05-07 09:03:13

标签: ajax phpfox

我在使用ajax调用时没有数据,没有ajax就可以正常工作,或者如果我在ajax中没有发送任何参数。

这是网址 http://localhost/phpfox/index.php?do=/blog/search/keyword_lorem/zipcode_LS11%25206AU/rangevaluefrom_3/rangetype_0/submit1_1/search-id_9666aeaf80cd89b66b53f3e1af8c05fd/

ajax的代码是



$(this).ajaxCall('blog.tagsSearch','keyword='+tags+'&encode=1&zipcode=LS11%206AU&rangevaluefrom=3&rangetype=0&view=my','GET');



<?php

Phpfox::getComponent('blog.index', array(), 'controller');
$this->html('.column_wrapper', $this->getContent(false));

?>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

请在\module\blog\include\component\ajax\ajax.class.php

内查看

定义了function tagsSearch(){ }

class Blog_Component_Ajax_Ajax extends Phpfox_Ajax
{
    // ... other codes

    public function tagsSearch(){ 
       // ... codes for tag search
    }

    // ... more codes
 }