额外的控制器出现在我的jquery回调功能之前

时间:2017-02-17 10:44:15

标签: php codeigniter

    var newBuddies = setInterval(function()
{
    var timestamp = new Date().getTime();
    $('#onlinebuddies').load('buddies/index/'+ timestamp);
}, 10000);
  

此处呼叫https://localhost/yellow/chat/index,但呼叫https://localhost/yellow/home/chat/index另一个控制器名称

1 个答案:

答案 0 :(得分:0)

如果您从http://localhost/yellow/home/内的页面调用此脚本,则会调用http://localhost/yellow/home/chat/index
要拨打http://localhost/yellow/chat/index,请先前往然后转到您想要的路径。

var newBuddies = setInterval(function()
{
    var timestamp = new Date().getTime();
    $('#onlinebuddies').load('../buddies/index/'+ timestamp);
}, 10000);