我有一个getJSON函数,我正在调用一次,然后使用setInterval()函数,以收听可随时更改值的thingspeak.com频道提要。
当返回数据field1的值为“1”时,我想在getJSON函数之外的jQuery代码中触发事件。如果值为“0”,则应关闭该事件。到现在为止还挺好。但是由于getJSON正在相隔几秒钟收听频道馈送,因此它将一遍又一遍地触发事件(timer()函数)。
如何让getJSON事件“在后台运行”,并且仅在通道Feed中返回的数据实际发生变化时触发?返回的数据还有一个字段,其中包含数据条目的唯一ID(entry_id),因此可以监听此值的更改。
目前正在运行此代码:
$(document).ready(function() {
getUpdates();
setInterval('getUpdates()',400);
});
function getUpdates() {
$.getJSON('http://api.thingspeak.com/channels/xxx/feed/last.json?callback=?', {key: "xxx"}, function(data) {
if(data.field1 == '1') {
// trigger timer function on
} else if(data.field1 == '0') {
// trigger timer function off
}
});
function timer() {
// Starts a timer countdown in a div
}
这是代码的第二个版本,可能提供更多信息:
$(document).ready(function() {
getUpdates();
setInterval('getUpdates()',400);
});
function getUpdates() {
var entries = new Array();
$.getJSON('http://api.thingspeak.com/channels/xxx/feed/last.json?callback=?', {key: "xxx"}, function(data) {
if ($.inArray(data.entry_id,entries) === -1) {
//New entry, add the ID to the entries array
entries.push(data.entry_id);
//Check if the div should be visible or not
if(data.field1 == '1') {
$(".desc").show();
} else if(data.field1 == '0') {
$(".desc").hide();
}
} else if ($.inArray(data.entry_id,entries) > -1) {
// Same entry as previous call, do nothing.
}
});
}
<div class="desc"></div>
这仍然无效,因为它似乎没有更新条目数组。
答案 0 :(得分:0)
这是一个近似的,未经测试的逻辑(毕竟我无法访问具有正确数据的Feed)。如果它引导你朝正确的方向发展,请告诉我。
var timerSet = 0;
function startTimer(){
timerSet = 1;
// start the 1-minute timer and show feedback to user
}
function stopTimer(){
timerSet = 0;
// stop the 1-minute timer and show feedback to user
}
function getUpdates() {
var entries = new Array();
$.getJSON('http://api.thingspeak.com/channels/xxx/feed/last.json?callback=?', {key: "xxx"}, function(data) {
if ($.inArray(data.entry_id,entries) === -1) {
//New entry, add the ID to the entries array
entries.push(data.entry_id);
// check which state the system is in and manage the 1-minute timer
if(data.field1 == '1' && timerSet === 0) { // if 1-minute timer not running already - start it
startTimer();
} else if(data.field1 == '0' && timerSet === 1) { // if 1-minute timer running already - stop it
stopTimer();
}
}
});
}
$(document).ready(function() {
// getUpdates(); don't need this: function will be called in 400ms anyway
setInterval('getUpdates()',400);
});