使用Nokogiri如何使用Nokogiri更改节点的文本值:: XML :: Text错误的参数数量

时间:2014-09-30 00:35:21

标签: ruby xml json nokogiri

我有一个看起来像这样的html文件

<html>
  <head>
    <title><* page.title *></title>
  </head>
  <body>
    <h1>h<* recipe.name *></h1>
    <* EACH recipes recipe *>
      <* food.name *>
      <* EACH recipe.nicknames nickname *>
        <p><* things to be replaced *></p>
      <* ENDEACH *>
    <* ENDEACH *>
  </body>
</html>

我有一个json文件。我正在使用json ruby library来解析它并将其作为哈希返回。我需要使用键并将值插入此html文件中。

到目前为止,我的ruby脚本看起来像这样

require 'rubygems'
require 'nokogiri'  
require 'json' 

data = File.read("data.json")
obj = JSON.parse(data)

puts obj.values

page = Nokogiri::HTML(open("somethingtemplate"))

# base = Nokogiri::XML::Node.new
# base["href"] = "http://google.com"

# page.xpath('//body/h1').each do |node|
#   node.add_child(base)
#   puts child.text
# end

 builder = Nokogiri::XML::Text.new do page
   page.body {
    page.h1
    page.text "hello world"
   }
 end 

 puts builder.doc

我在这里看到了某人的例子 - &gt; Insert Text After Specific XML Tag in Nokogiri

我收到此错误

 `new': wrong number of arguments (0 for 2+) (ArgumentError)

该文档没有示例,它不适合我。

1 个答案:

答案 0 :(得分:0)

您使用的是课程Nokogiri::XML::Text,但需要像示例中那样使用Nokogiri::XML::BuilderNokogiri::XML::Text.new需要2个以上的参数http://nokogiri.org/Nokogiri/XML/Text.html