我的第二个例子是返回[function getValue]的那个,我正在尝试解决它,但我看不出问题是什么。
我一直在使用google脚本中的xmlparse,我要解析的xml会将所有相关数据保存在元素的属性中。
这里有一些有效的代码(通过log [ctrl] + [enter]显示):
function dialogDisplay() {
var xmlstring = Xml.parse('<rowset name="characters" key="characterID" columns="name,characterID,corporationName,corporationID"><row name="Jonah Younbrog" characterID="90131303" corporationName="House of Praetor" corporationID="523373135"/><row name="Mador Younbrog" characterID="90149709" corporationName="House of Praetor" corporationID="523373135"/><row name="Marc Younbrog" characterID="747451028" corporationName="House of Praetor" corporationID="523373135"/></rowset>');
var attributes = xmlstring.getElement().getAttributes();
for (var i in attributes) {
Logger.log(attributes[i].getValue());
}
}
这里的代码不起作用,它还记录元素名称(成功)并使用嵌套的fors遍历xml:
function fetchToLogger() {
var assetURL = "https://api.eveonline.com/account/characters.xml.aspx?keyID=1409941&vCode=xagxMH966J2EQinVpoFOBB5H1UidCwsjoTwtBKhhvMVZWqq6Jio4mkiBwv026Olc";
var assetstring = UrlFetchApp.fetch(assetURL).getContentText();
var xmlstring = Xml.parse(assetstring, false);
var elements = xmlstring.eveapi.result.getElements();
for (var a in elements) {
Logger.log(elements[a].getName().getLocalName());
var attributes = elements[a].getAttributes();
for (var x in attributes) {
Logger.log(attributes[x].getValue);
}
var subelements = elements[a].getElements();
for (var b in subelements) {
Logger.log(subelements[b].getName().getLocalName());
var subattributes = subelements[b].getAttributes();
for (var y in attributes) {
Logger.log(attributes[y].getValue);
}
}
}
}
答案 0 :(得分:0)
您没有调用实际功能,请更改为:
Logger.log(attributes[x].getValue());
请注意,Logger.log(attributes[x].getValue
只是对函数的引用,这是控制台显示的内容。
答案 1 :(得分:0)
.getValue
是一个功能。所以你应该使用.getValue()
例如:
Logger.log(attributes[x].getValue());