1

我一直在寻找一种使用 Google Apps 脚本解析和编辑 XML 的方法。使用内置的 Xml 类解析数据很容易,但这并不能让我编辑任何数据。以示例 XML 为例:

<?xml version='1.0' encoding='UTF-8'?>
<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gContact='http://schemas.google.com/contact/2008' xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005' gd:etag='&quot;Xh9QE00OESt7I2Bp&quot;'>
<id>http://www.google.com/m8/feeds/profiles/domain/test.com/full/user</id>
<info>Test Info</info>
</entry>

假设我正在寻找修改信息条目。目前我只是将整个内容保存为一个字符串,indexOf("<info>")用于查找条目的开始位置并将测试从那里替换为indexOf("</info>"). 这似乎可行,但我认为它不那么可靠(如果标签具有属性,它将无法找到它)。

我在这里看到另一个线程有人建议使用 XML(不是 Xml)来修改属性,但我不知道如何将我拥有的现有 xml(用 UrlFetchApp 检索到字符串中)解析到对象中。

有没有人对此有任何建议,将不胜感激。

4

1 回答 1

2

万一将来有人发现这个(你好未来的人,飞行汽车和机器人女仆怎么样?),我无法找到在应用程序脚本中解析和编辑 xml 的方法,所以我编写了自己的 json 到 xml对我有用的功能(处理来自 google profile api 的数据)。我还没有对它进行太多其他测试,所以如果你想使用它们,你可能必须修改它们。

function xmlToJson(xmlElement) {
  var e = {"namespace" : xmlElement.getName().getNamespace(),
           "name" : xmlElement.getName().getLocalName()};
  var xmlAs = xmlElement.getAttributes();
  if(xmlAs.length > 0) {
    e.attributes = {};
    for(var j = 0; j < xmlAs.length; j++) {
      e.attributes[xmlAs[j].getName().getLocalName()] = {"namespace" : xmlAs[j].getName().getNamespace(),
                                                         "name" : xmlAs[j].getName().getLocalName(),
                                                         "value" : xmlAs[j].getValue()};
    }
  }

  var xmlChildren = xmlElement.getElements();
  if(xmlChildren.length > 0) {
    e.children = {};
    for(var i = 0; i < xmlChildren.length; i++){
      var child = xmlToJson(xmlChildren[i]);
      if(typeof e.children[child.name] != "undefined")
        e.children[child.name].push(child);
      else
        e.children[child.name] = [child];
    }
  } else {
    e.value = xmlElement.getText();
  }
  return e;
}

function jsonToXmlString(json) {
  var xml = "<?xml version='1.0' encoding='UTF-8'?>";
  var namespaces = new Object(); // List of things which are possibly namespaces
  namespaces["http://www.w3.org/2000/xmlns/"] = "xmlns";

  function appendNode(node) {
    if(typeof node.attributes != 0) {
      var attributes = ""; // Get attributes first incase any are namespaces
      var keys = getKeys(node.attributes);
      for(var i = 0; i < keys.length; i++) { // Loop through attributes once to get namespaces
        if(node.attributes[keys[i]].value.indexOf("http") == 0) // Possible namespace, store in namespaces
          namespaces[node.attributes[keys[i]].value] = node.attributes[keys[i]].name;
      }
      // If we only do one loop, there may be some namespaces on attributes that don't get recorded first
      for(var i = 0; i < keys.length; i++) { 
        if(node.attributes[keys[i]].namespace != "") // Get namespace if needed
          var ns = (namespaces[node.attributes[keys[i]].namespace] || node.attributes[keys[i]].namespace) + ":";
        else
          var ns = "";
        attributes += " " + ns + node.attributes[keys[i]].name + "='" + node.attributes[keys[i]].value + "'"; 
      }
    }
    if(node.namespace != "") // Get namespace if needed
      var ns = (namespaces[node.namespace] || node.namespace) + ":";
    else
      var ns = "";

    xml += "<" + ns + node.name + attributes;

    if(typeof node.children != "undefined") { 
      xml += ">";
      var cKeys = getKeys(node.children);
      for(var i = 0; i < cKeys.length; i++) {
        for(var j = 0; j < node.children[cKeys[i]].length; j++)
          appendNode(node.children[cKeys[i]][j]);
      }
    } else if(typeof node.value != "undefined") {
      xml += ">" + node.value;
    } else {
      xml += "/>";
      return
    }

    xml += "</" + ns + node.name + ">"
  }

  appendNode(json);
  return xml;
}
于 2013-02-15T09:07:26.143 回答