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另一个控制器名称
答案 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);