我有一个类似于<student id=1> .... </student>
. 当我尝试使用 dom 解析器 [1] 提供的 getAttribute API 时,我收到以下错误:与元素类型“id”关联的属性“{1}”需要打开引号。
如果我在 xml 中添加引号使其看起来像:<student id="1"> .... </student>
那么错误就会消失。
我不想更改我所有的 xml(数千个)。有什么我可以做的代码修复吗?
我有一个类似于<student id=1> .... </student>
. 当我尝试使用 dom 解析器 [1] 提供的 getAttribute API 时,我收到以下错误:与元素类型“id”关联的属性“{1}”需要打开引号。
如果我在 xml 中添加引号使其看起来像:<student id="1"> .... </student>
那么错误就会消失。
我不想更改我所有的 xml(数千个)。有什么我可以做的代码修复吗?