如何检索Nokogiri处理指令属性



我正在使用nokogiri进行XML。

我能够检索样式表。但不是每个样式表的属性。

1.9.2p320 :112 >style = xml.xpath('//processing-instruction("xml-stylesheet")').first
=> #<Nokogiri::XML::ProcessingInstruction:0x5459b2e name="xml-stylesheet">
style.name
=> "xml-stylesheet"
style.content
=> "type="text/xsl" href="CDA.xsl""

有什么简单的方法可以获取类型,href属性值?

唯一的方法是解析处理指令的内容(style.content)?

我通过以下答案中的说明来解决此问题。

Nokogiri可以搜索"?xml-stylesheet"标签?

向nokogiri添加了新的to_element方法

 class Nokogiri::XML::ProcessingInstruction
   def to_element
     document.parse("<#{name} #{content}/>")
   end
 end
 style = xml.xpath('//processing-instruction("xml-stylesheet")').first
 element = style.to_element

检索HREF属性值

 element.attribute('href').value

你不能这样做吗?

style.content.attribute['type'] # or attr['type'] I am not sure
style.content.attribute['href'] # or attr['href'] I am not sure

检查此问题如何使用Nokogiri访问属性。

相关内容

  • 没有找到相关文章

最新更新