我在使用ajax调用时没有数据,没有ajax就可以正常工作,或者如果我在ajax中没有发送任何参数。
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;
答案 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
}