简体   繁体   English

在javascript中解析xml

[英]parsing xml in javascript

I need to create custom objects based on an XML input, the rule is that for every node if it has a direct child node is named EndNode and the text value of which is 1 , then I create a leaf object.我需要基于 XML 输入创建自定义对象,规则是对于每个节点,如果它有一个直接子节点,则命名为EndNode并且其文本值为1 ,然后我创建一个叶对象。 So for every node, I need to check the direct child with name EndNode and its value.因此,对于每个节点,我需要检查名称为EndNode的直接子节点及其值。 It's not so easy with the DOM API and DOM selector (in this case I use Ext.DomQuery ) doesn't have a way to select direct child of the root node... Below is my attempt for using DOM selector, I need to wrap the node around with another level of the node for the selector to work.使用 DOM API 和 DOM 选择器(在这种情况下我使用Ext.DomQuery )没有办法选择根节点的直接子节点并不是那么容易......下面是我使用 DOM 选择器的尝试,我需要用另一层节点包裹该节点,以便选择器工作。 But I can't just say new Node() , it silently fails.但我不能只说 new Node() ,它默默地失败了。 I guess I have to walk through n.childNodes , but it is complicated to do it this way to check the rule I described above.我想我必须遍历n.childNodes ,但是以这种方式检查我上面描述的规则很复杂。 Any solution?有什么解决办法吗?

Ext.each(node.childNodes, function(n){
    if (n.nodeType == this.XML_NODE_ELEMENT) {
        var tmp=new Node();
        console.log('hi');
        tmp.appendChild(n);
        console.log(Ext.DomQuery.select(n.tagName+">EndNode", tmp));
    }
}

I did an xml parser.我做了一个xml解析器。 It is quite easy with Dojo's library.使用 Dojo 的库很容易。 Here ya are.你在这里。 When you're done with it though I recommend exporting the var to JSON and using it as cache.完成后,我建议将 var 导出为 JSON 并将其用作缓存。

dojo.require("dojox.xml.parser");
var parser = dojox.xml.parser;
function crules() { 
    this.rules = new Array();
    this.xml = Object;
} 
xml = '';
crules.prototype.load = function(file){
    var xmlget = dojo.xhrGet({
        url: file,
        handleAs: "xml",
        load: function(data){
            xml = data;
        },
        error: function (error) {
            console.error ('Error: ', error);
        },
        sync: true
    }
    );
    this.xml = xml;
}
crules.prototype.buildout = function (){
    var rules = this.xml.getElementsByTagName('ruleset');
    //dojo.byId('jsloading').innerHTML = 'Loading Javascript';
    for(var i=0; i<rules.length; i++){
        //dojo.byId('jsloading').innerHTML += ' .';
        r = new cruleset();
        r.name = xtagvalue(rules[i],'name');
        base = xtag(rules[i],'base');
        textcustom = xtag(rules[i],'textcustom');
        r.textcustomy = xtagvalue(textcustom[0],'y');
        r.textcustomx = xtagvalue(textcustom[0],'x');
        for(var j=0; j<base.length; j++){
            r.bases[j] = new cbase();
            r.bases[j].imgsrc = xtagvalue(base[j],'imgsrc');
            r.bases[j].color = xtagvalue(base[j],'color');
            r.bases[j].coloropts = new Array();
            var copts = xtag(rules[i],'option');
            for(var k=0; k<copts.length;k++){
                var cc = new Object();
                cc.color = xtagvalue(copts[k],'color');
                cc.imgsrc = xtagvalue(copts[k],'imgsrc');
                r.bases[j].coloropts.push(cc);
            }
        }
        zones = xtag(rules[i],'zone');
        for(var j=0; j<zones.length; j++){
            z = new czone();
            z.name =xtagvalue(zones[j],'name');
            zoneconfigs = xtag(zones[j],'zoneconfig');
            for(var n=0; n<zoneconfigs.length; n++){
                zc = new czoneconfig();
                zc.name = z.name;
                zc.x1 =xtagvalue(zones[j],'x1');
                zc.y1 =xtagvalue(zones[j],'y1');
                zc.w =xtagvalue(zones[j],'w');
                zc.h =xtagvalue(zones[j],'h');
                hotspots = xtag(zoneconfigs[n],'hotspot');
                for(var k=0; k<hotspots.length; k++){
                    h = new chotspot();
                    h.name = xtagvalue(hotspots[k],'name');
                    h.x =xtagvalue(hotspots[k],'x');
                    h.y =xtagvalue(hotspots[k],'y');
                    h.nameyoffset = xtagvalue(hotspots[k],'nameyoffset');
                    h.accessoryonly = xtagvalue(hotspots[k],'accessoryonly');
                    if(h.accessoryonly == null){ 
                        h.accessoryonly = 0;
                    }
                    var showname = xtag(hotspots[k],'showname');
                    if(!isEmpty(showname)){
                        h.showname = xtagvalue(hotspots[k],'showname');
                    }
                    /*h.itemset =xtagvalue(hotspots[k],'itemset');*/
                    items = xtag(hotspots[k],'item');
                    if(items){
                        for(var l=0;l<items.length;l++){
                            t = new citem();
                            t.id = xtagvalue(items[l],'id');
                            h.items[h.items.length] = t;
                        }
                    }
                    zc.hotspots[zc.hotspots.length] = h;
                }
                z.zoneconfigs[z.zoneconfigs.length] = zc;
            }
            r.zones[r.zones.length] = z;
        }
        this.rules[this.rules.length] = r;
    }
    /*xmltext = parser.innerXML(xml);
      dojo.byId('cwindow').innerHTML = xmltext;*/
}

function xtag(e,tag){
    var n=null;
    n = e.getElementsByTagName(tag);
    if(n.length>=1){
        return e.getElementsByTagName(tag);
    }
    else return null;
}
function xtagvalue(e,tag){
    var n=null;
    n = e.getElementsByTagName(tag);
    if(n.length>=1){
        //console.log(tag,'here',n[0],parser.textContent(n[0]));
        return parser.textContent(n[0]);
    }
    else return null;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM