gpt4 book ai didi

javascript - Codeigniter 内容每 X 秒获取一次

转载 作者:行者123 更新时间:2023-12-02 16:50:30 24 4
gpt4 key购买 nike

我有一个 Codeigniter 框架投票应用程序,我想在主页中添加一个新功能,每 X 秒更新一次主页,我已经准备好 SQL 查询来返回带有项目 ID 的项目投票,Codeigniter 将为它提供 JSON格式。

前端我正在使用 angularjs,每 X 秒自动获取 JSON 内容的最佳方法是什么。

最佳答案

我会使用 $interval 和 $http 函数,因为您使用的是 Angular。

它看起来像这样:

// Set the time (in milliseconds)
var time = 1000;
// Call this in your controller
function($scope, $interval, $http) {
// Start the interval
$interval(function() {
// Send a GET request to your URL
$http.get('/my/url', { params: {} }).success(function(data) {
// Add the new JSON data to current scope
$scope.json_content = data.json_content;
});
}, time);
};

关于javascript - Codeigniter 内容每 X 秒获取一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26693978/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com