开发者

Slow performance when working with multiple XML files

开发者 https://www.devze.com 2023-04-06 01:29 出处:网络
I\'开发者_运维百科m trying to work with two XML files. I use the second highlighted answer in this thread [1] as a base script.

I'开发者_运维百科m trying to work with two XML files. I use the second highlighted answer in this thread [1] as a base script.

This is what I got:

jQuery.extend({
getValues: function(url) {
var result = null;
$.ajax({
    url: url,
    type: 'get',
    dataType: 'xml',
    async: false,
    success: function(data) {
        result = data;
    }
});
return result;
}
});


var party1 = $.getValues('http://data.riksdagen.se/voteringlista/?rm=2010%2F11&bet=&punkt=parti=M&valkrets=&rost=&iid=&sz=500&utformat=xml&gruppering=bet')
var party2 = $.getValues('http://data.riksdagen.se/voteringlista/?rm=2010%2F11&bet=&punkt=&parti=S&valkrets=&rost=&iid=&sz=500&utformat=xml&gruppering=bet')

$(party1).find('votering').each(function(){
var id = $(this).find("forslagspunkt").text()
partyTwo(id)
//-------------------------------------
//HERE I RUN A FEW SIMPLE IF STATEMENTS
//------------------------------------

})

function partyTwo(id) {
$(party2).find('votering').filter(function() {
    return $(this).find("forslagspunkt").text() == id;
    }).each(function () {

//-------------------------------------
// AGAIN, A FEW SIMPLE IF STATEMENTS
//------------------------------------      

            return vote 
})  
}

This leaves me with two problems:

1) partyTwo(id) returns 'undefined', but works fine if I manually insert an id outside.

2) The whole script runs very slow (+5 sec to load).

Any thoughts?

[1] JQuery - Storing ajax response into global variable

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号