我有一个Ajax函数 -
$(document).ready(function(){
$.ajax({
url: base_url+'movies/index/this_week/hindi',
type: "POST",
success: function( data )
{
$("#news1").html(data);
}
});
});
在我的电影控制器中,当我在_remap()函数中打印$this->uri->segment(2)
或$this->uri->segment(3)
时,它总是返回随机值。有时它返回两个语句的索引,或者有时返回'index'和'hindi'等。
当我刷新页面时,它会返回随机值。我很困惑。为什么会这样?
这是_remap()函数。
function _remap()
{
$segment_1 = $this->uri->segment(1);
echo "1==>".$this->uri->segment(1);
echo " 2==>".$this->uri->segment(2);
echo " 3==>".$this->uri->segment(3);
echo " 4==>".$this->uri->segment(4);
switch ($segment_1) {
case null:
case false:
case '':
$this->index();
break;
case 'movies':
if($this->uri->segment(2) == "index" && $this->uri->segment(3) == "this_week")
{
$this->moviedescription($this->uri->segment(4));
}
else
{
$this->moviedescription();
}
break;
default:
$this->index();
break;
}
}
任何帮助表示赞赏。 提前致谢。
答案 0 :(得分:1)
可能有比使用uri细分更好的方法。尝试使用函数参数,如下所示:
您的movies
控制器:
public function index($when = false, $type = false) {
...
echo $when, ', ', $type;
// $when should be this_week and $type should be hindi, in your example)
// $when isn't the best variable name, but you get the idea
}
然后只是将这些参数作为变量访问,因为它们总是相同,没有随机值。我已将其默认值设置为false,以防万一您不使用它们(例如,如果您有默认的movies
页面)。
答案 1 :(得分:0)
它不应该给你随机值,这真的很奇怪,现在还不确定。
当您将ajax请求(从您的示例中)发送到控制器时,启发控制器应具有:
echo $this->uri->segment(1); // result "movies"
echo $this->uri->segment(2); // result "index"
echo $this->uri->segment(3); // result "this_week"
echo $this->uri->segment(4); // result "hindi"
您可以传递第二个参数作为默认值。
var_dump($this->uri->segment(5,FALSE)); // result BOOL FALSE
答案 2 :(得分:0)
我已在计算机中检查了您的代码,但它运行正常。因此,如果在JAVASCRIPT中正确定义base_url
,问题就不在代码中。 仔细检查。
您可能在路由配置文件中设置了其他路由,这些路由正在弄乱网址,或者您可能会遇到.htaccess
文件的问题。