私はこの目標でスクリプトを作成しようとしています:
- 新しい注文があるかどうかをX秒ごとに確認します(function refreshIntervalId())
- 新しい注文がある場合は、setTimeoverを停止します
- 別の関数(関数refreshIntervalId2())でいくつかのアクションを実行し、desetTimeoverを再度開始します
このコードでそれを達成しましたが、タイマーは停止せず、5秒ごとに実行を続けます。
どうすればこれを解決できるか知っていますか?前もって感謝します
var refreshIntervalId, refreshIntervalId2;
$("input:text:visible:first").focus();
refreshIntervalId2 = (function() {
return {
update: function() {
var pedidoid, url;
clearInterval(refreshIntervalId);
pedidoid = $("#pedidoid").val();
url = Routing.generate("get_pedido", {
id: pedidoid
});
return $.getJSON(url, function(json) {
clearInterval(refreshIntervalId2);
if (json.entregado === 1) {
return location.reload(true);
}
});
}
};
})();
refreshIntervalId = (function() {
return {
update: function() {
var url;
url = Routing.generate("get_pedidos");
return $.getJSON(url, function(json) {
var imgsrc;
clearInterval(refreshIntervalId);
$(".hero-unit").children("h1").text("Pedido nuevo!");
$(".hero-unit").children("h2").text("");
imgsrc = "/images/uploads/" + json.pedido.material.foto;
$("#imagenpedidomaterial").attr("src", imgsrc);
$(".cajapuesto").css({
position: "absolute",
top: json.pedido.puesto.y + "px",
left: json.pedido.puesto.x + "px"
});
$(".cajapuesto").addClass(json.kolorea);
$("#divimagenmaterial").show("slow");
$("#divcodbar").show("slow");
$("#pedidoid").val(json.pedido.id);
return setInterval(refreshIntervalId2.update, 5000);
});
}
};
})();
$(document).ready(function() {
return setInterval(refreshIntervalId.update, 5000);
});
$(document.body).on("keypress", function(e) {
var $micodbar, url;
switch (e.which) {
case 13:
$("#divmaterialincorrecto").hide();
$micodbar = $("#checkcodbar").val();
url = Routing.generate("get_material", {
codbar: $micodbar
});
return $.ajax(url, {
type: "GET",
contentType: "application/json",
success: function(data) {
var datos;
if (data === "null") {
return $("#divmaterialincorrecto").show("slow");
} else {
datos = jQuery.parseJSON(data);
return $(".row").show("slow");
}
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("Errorea");
alert(xhr.status);
return alert(thrownError);
}
});
}
});