尝试使用nokogiri获取属性值:
require 'nokogiri'
doc = Nokogiri::XML("<root attr=1></root>")
doc.root.attributes
#=> {}
为什么这不起作用...?
答案 0 :(得分:1)
XML属性值始终需要用引号引起来。
由于您在外部使用了双引号,因此需要在内部使用单引号:
require 'nokogiri'
doc = Nokogiri::XML("<root attr='1'></root>")
doc.root.attributes
或者您可以相反地做,在内部用双引号括住,在外面用单引号。
doc = Nokogiri::XML('<root attr="1"></root>')
答案 1 :(得分:1)
对此进行冥想:
require 'nokogiri'
doc = Nokogiri::XML("<root attr=1></root>")
doc.errors # => [#<Nokogiri::XML::SyntaxError: 1:12: FATAL: AttValue: " or ' expected>, #<Nokogiri::XML::SyntaxError: 1:12: FATAL: attributes construct error>, #<Nokogiri::XML::SyntaxError: 1:12: FATAL: Couldn't find end of Start Tag root line 1>, #<Nokogiri::XML::SyntaxError: 1:12: FATAL: Extra content at the end of the document>]
doc.errors
是你的朋友。