小编aza*_*ytc的帖子

将XML解析为Ruby对象并动态创建属性方法?

我需要将XML文件解析为Ruby对象.

是否有工具从XML读取属性, report.system_slots.items以返回项属性数组,或report.system_slots.current_usage返回'可用'?

是否有可能与Nokogiri这样做?

<page Title="System Slots" H1="Property" H2="Value" __type__="2">
  <item Property="System Slot 1">
  <item Property="Name" Value="PCI1"/>
  <item Property="Type" Value="PCI"/>
  <item Property="Data Bus Width" Value="32 bits"/>
  <item Property="Current Usage" Value="Available"/>
  <item Property="Characteristics">
    <item Property="Vcc voltage supported" Value="3.3 V, 5.0 V"/>
    <item Property="Shared" Value="No"/>
    <item Property="PME Signal" Value="Yes"/>
    <item Property="Support Hot Plug" Value="No"/>
    <item Property="PCI slot supports SMBus signal" Value="Yes"/>
  </item>
</item>
Run Code Online (Sandbox Code Playgroud)

ruby xml nokogiri xml-parsing

1
推荐指数
1
解决办法
5467
查看次数

标签 统计

nokogiri ×1

ruby ×1

xml ×1

xml-parsing ×1