我有控制器叫Time
<?php
class Time extends CI_Controller {
// just returns time
public function index() {
echo time();
}
}
?>
此控制器输出当前时间,并通过在视图中使用以下代码加载。
window.setInterval(function() {
$.get('time/index',
// when the Web server responds to the request
function(time) {
$('#mydiv').html(time+'<br/>');
}
)
}, 5000);
可以看出,只能使用 html 响应,但是如果我希望Time
控制器返回数组、对象甚至变量等,我该怎么做呢?