我有這樣的引入nokogiri對象:引入nokogiri我怎麼得到這個值了
element.first
=> #<Nokogiri::XML::Element:0x3fc0cf8ac4b8 name="a" attributes=[#<Nokogiri::XML::Attr:0x3fc0cf8ac454 name="class" value="fl">, #<Nokogiri::XML::Attr:0x3fc0cf8ac42c name="id" value="flag16">, #<Nokogiri::XML::Attr:0x3fc0cf8ac418 name="href" value="/flag/?flagCode=16&postingID=2884068312">, #<Nokogiri::XML::Attr:0x3fc0cf8ac404 name="title" value="Wrong category, wrong site, discusses another post, or otherwise misplaced">] children=[#<Nokogiri::XML::Text:0x3fc0cf8ab6bc "\n\t\t\t\tmiscategorized">]>
我需要從postingID
值獲得數2884068312出來。
任何想法如何實現這一目標?
element.first.value
NameError: undefined local variable or method `value' for main:Object
from (irb):138
1.9.2-p290 :139 > element.first[:value]
=> nil
1.9.2-p290 :140 > element.first["value"]
=> nil