0

我了解导致错误数量的参数错误的原因,但我的代码没有传递任何参数来初始化任何类,所以我完全不确定为什么我的代码会给我这个错误。我对 Ruby on Rails 也很陌生,所以这无济于事。我的代码如下:

def create_google_file  
  @products = Product.find(:all)
  file = File.new('dir.xml','w')
  doc = REXML::Document.new

  root = REXML::Element.new "rss"
  root.add_attribute("xmlns:g", "http://base.google.com/ns/1.0")
  root.add_attribute("version", "2.0")

  channel = REXML::Element.new "channel"
  root.add_element channel

  title = REXML::Element.new "title"
  title.text = "Sample Google Base"
  channel.add_element title

  link = REXML::Element.new "link"
  link.text = "http://base.google.com/base/"
  channel.add_element link

  description = REXML::Element.new "description"
  description.text = "Information about products"
  channel.add_element description

  @products.each do |y|
    item = channel.add_element("item")

    id = item.add_element("g:id")
    id.text = y.id

    title = item.add_element("title")
    title.text = y.title

    description = item.add_element("description")
    description.text = y.description

    googlecategory = item.add_element("g:google_product_category")
    googlecategory.text = y.googlecategory

    producttype = item.add_element("g:product_type")
    producttype.text = y.producttype

    link = item.add_element("link")
    link.text = y.link

    imglink = item.add_element("g:image_link")
    imglink.text = y.imglink

    condition = item.add_element("condition")
    condition.text = y.condition

    availability = item.add_element("g:availability")
    availability.text = y.availability

    price = item.add_element("g:price")
    price.text = y.price "USD"

    gtin = item.add_element("g:gtin")
    gtin.text = y.gtin

    brand = item.add_element("g:brand")
    brand.text = y.brand

    mpn = item.add_element("g:mpn")
    mpn.text = y.mpn

    expirationdate = item.add_element("g:expiration_date")
    expirationdate.text = y.salepricedate
  end   

  doc.add_element root

  file.puts doc
  file.close
  end

我得到的错误是: ProductsController#create_google_file 中的 ArgumentError

参数数量错误(1 代表 0)

4

1 回答 1

0

应发帖人的要求,我将我的评论放在一个答案中:

纯粹基于其他线路的一致性,但不知道哪条线路实际上是失败的,可能是这部分:price.text = y.price "USD". 是y.price一个接受参数的方法吗?它是定义为def price(type)还是什么?如果不是,如果它不带任何参数,那是因为您不应该向该方法发送任何参数。看起来它只是一个吸气剂。

@FranklinJosephMoormann 正如我所怀疑的那样,就是这样。您是否尝试制作像“4.50 USD”这样的字符串?那么你可能想要:price.text = "#{y.price} USD". 这将获取结果y.price并将其放入字符串中,并允许您继续在字符串中输入更多内容。这称为字符串插值。

于 2012-12-21T16:00:40.310 回答