Laya解析xml要怎么弄?XMLDom不见了?我只找到原生的XMLDocument,可是报错Property 'attributes' does not exist on type 'Node & ChildNode'. 谁 遇到过?let local_config:XMLDocument = Laya.Utils.parseXMLFromString(source);local_config.firstChild.childNodes[0].attributes.getNamedItem("tracekey").value明明lib.d.ts里有attributes啊interface Node extends EventTarget {readonly attributes: NamedNodeMap;...}
1 回答
哔哔one
TA贡献1854条经验 获得超8个赞
解决办法:
let local_config:XMLDocument 不要声明类型
let local_config = Laya.Utils.parseXMLFromString(source);
local_config.firstChild.childNodes[0].attributes.getNamedItem("tracekey").value
添加回答
举报
0/150
提交
取消