如何使用命名空間訪問屬性?我的XML數據的形式使用命名空間訪問XML屬性
val d = <z:Attachment rdf:about="#item_1"></z:Attachment>
但下面如果我從屬性的名稱中刪除命名空間的組件,然後它工作沒有屬性
(d \\ "Attachment" \ "@about").toString
匹配。
val d = <z:Attachment about="#item_1"></z:Attachment>
(d \\ "Attachment" \ "@about").toString
任何想法如何使用Scala中的命名空間訪問屬性?