需要帮助解析XML使用jQuery(Need help parsing XML with jQuer

2019-10-17 16:39发布

<?xml version="1.0"?>
<watchlist timestamp="2013-02-04 17:38:24">
  <team name="Parent">
      <child name="ChildTeam1" team="3">
          <client mnem="c1">5</client>
          <client mnem="c2">0</client>
          <client mnem="c3">1</client>
          <client mnem="c4">1</client>
          <client mnem="c5">2</client>
          <client mnem="c6">6</client>
          <client mnem="c7">0</client>
          <client mnem="c8">0</client>
          <client mnem="c9">1</client>
          <client mnem="c10">0</client>
      </child>
      <child name="ChildTeam2" team="3">
          <client mnem="c1">6</client>
          <client mnem="c2">0</client>
          <client mnem="c3">0</client>
          <client mnem="c4">0</client>
          <client mnem="c5">0</client>
          <client mnem="c6">0</client>
          <client mnem="c7">0</client>
          <client mnem="c8">0</client>
          <client mnem="c9">0</client>
          <client mnem="c10">0</client>
      </child>
  </team>
</watchlist>

我需要帮助解析使用jQuery上面的XML。 出现与他们的孩子父母的球队队。 我的目标是加起来的总C1为母队谁是球队ID为3 ...所以在上面的例子中,获得总对C1,我想补充的ChildTeam1发现5和6 ChildTeam2发现去获得C1共11个。

要添加一个扭曲......客户端上的多点回声属性会定期更改,所以我不能硬编码来过滤“C1”,我必须动态拉那部分。 我知道总会有正好10个客户端一个孩子下虽然。

有任何想法吗?

该代码我到目前为止,它不计算总的C1团队3正确,使用的多点回声属性(我试图从自MNEM变化脱身)过滤器:

function parseXml(data) {
var count1 = 0;
    $(data).find("child[team='3']").each(function(child) {
        count1 += parseInt($(this).find("client[mnem='c1']").text(), 10);
    });
    alert(count1); //output total c1 for team 3
}

UPDATE - 最终解决BELOW

function parseXml(data) {
    var i = 0; 
    var mnemonic = new Array();

    //build array of the 10 mnemonics, with mnemonic as key value
    $(data).find("client").each(function(){ 
        if ( i < 10 ) {
            mnemonic[$(this).attr('mnem')] = 0; //set default count to 0
            i++;
        } else { return false; } //break .each loop
    });

    //find all children where team = 3, and add the numbers up for each client mnemonic
    $(data).find("child[team='3']").each(function() {
        for(var index in mnemonic) {
            //add to the count
            mnemonic[index] +=     parseInt($(this).find("client[mnem="+index+"]").text(), 10);
        }
    });

    //output the results
    for(var index in mnemonic) {
        $("#output").append( index + " : " + mnemonic[index] + "<br />");
    }
}

Answer 1:

你只是有麻烦改变c1到别的东西吗? 这只是一个编辑在您选择的字符串的事情:

function parseXml(data) {
    var count = 0,
        teamnum = 3,
        counter = 'c1';
    $(data).find("child[team="+count+"]").each(function(i,el) {
        count1 += parseInt($(this).find("client[mnem="+counter+"]").text(),10);
    });
    alert(count1); //output total c1 for team 3
}


Answer 2:

您可以通过更换很方便地处理多点回声事"client[mnem='c1']""client[" + attrname +"='c1']" 是你还有什么需要的?



文章来源: Need help parsing XML with jQuery