每次网站加载时执行函数或jquery中的var更改

时间:2017-07-18 14:00:57

标签: javascript jquery ajax

我有一个ajax函数,应该在每次加载网站时执行,它确实没有问题,但我使用框架,每次当我的全局变量更改时,函数也应该执行,但它只执行一次。这是完美的参考代码:

var buttonClicked = false; //global variable
        function sync(arg, callback){   
        $('.loader').show();
        $.ajax({ 
            method: 'GET',
            url: 'sync/active.php',
            dataType: 'json',
            data:{calling: arg}, 
            success: function(data, status, xhr){
             $('.loader').hide();
             callback(data);

            },
            error: function(xhr, ajaxOptions, thrownError){
                console.log(thrownError);
            }
       });  
    }

这是有问题的部分

$( document ).ready(function() { // or if(buttonClicked == true) execute again
sync("patient", function(data) { 
        var res = data; 
        for(var i=0; i<res.length;i++){
            for(var key in res[i]){
                var value = res[i][key];
                switch(key){
                    case "id":
                        res[i][key] = parseInt(value);
                        break;
                    case "kundennr":
                        res[i][key] = parseInt(value);  
                        break;
                    case "client":
                        res[i][key] = value;
                        break;
                    case "start":
                        res[i][key] = new Date(value);
                        break;
                    case "end":
                        res[i][key] = new Date(value);
                        break;
                    case "title":
                        res[i][key] = value;
                        break;
                    case "description":
                        res[i][key] = value;
                        break;

                    case "termart":
                        res[i][key] = parseInt(value);
                        break;

                    case "userId":
                        res[i][key] = parseInt(value);
                        break;

                    default:
                        console.log("error at "+key);
                }
            }
        }
        patient = res;
    });
 }

每次我点击甚至可能有不同ID的特定按钮但总是将var buttonClicked设置为true应触发从服务器获取新鲜Json数据的函数sync但是JQuery中没有Or运算符,有没有人有想法我怎么能解决这个问题?

0 个答案:

没有答案