1

编辑:我想知道为什么 Ruby/Rails 决定寻找word_list_url在我的控制器中调用的函数。通常,为什么在 RoR 中完成所有事情都是有道理的,但这对我来说没有意义。

我正在尝试respond_with在我的一个控制器功能中对对象进行建模,如下所示:

def create
   @word_list = WordList.new(params[:word_list])
   @word_list.key = randomKey
   if @word_list.title == nil then @word_list.title = "No Title"
   end
   if @word_list.words == nil then @word_list.words = "Empty"
   end
   @word_list.save
   respond_with @word_list
end

然后我像这样调用API:

curl -v -H "Content-Type: application/json" -X POST -d '{"title":"New Word List", "words":"Words\nFor\nThe\nWord\nList"}' http://localhost:3000/create.json

但我得到了错误:

NoMethodError (undefined method `word_list_url' for #<WordListsController:0x007fb34c95ca98>):
  app/controllers/word_lists_controller.rb:42:in `create'

但是,这是模型:

class WordList < ActiveRecord::Base
  attr_accessible :key, :title, :words
end

它从哪里得到“方法word_list_url”?我不完全确定发生了什么。我有我的respond_to

respond_to :json, :xml

这里发生了什么?如果我使用render而不是respond_with,一切正常。


目前,在其他功能中,respond_with工作得很好。例如:

  def show
    lists = WordList.where(:key => params[:id].upcase)
    if lists.length > 0 then @word_list = lists.first
    elsif numberValue(params[:id]).between?(0, WordList.count) then @word_list = WordList.find(params[:id])
    end
    respond_with(@word_list)
  end

路线:

create POST   /create(.:format) word_lists#create
update PUT    /update(.:format) word_lists#update
       GET    /:id(.:format)    word_lists#show
4

1 回答 1

1

如果您查看http://api.rubyonrails.org/classes/ActionController/Responder.html,您会发现对 xml 格式的支持扩展到

format.xml { render :xml => @word_list, :status => :created, :location => @word_list }

我认为:location使用url_for可能会导致您的错误。尝试

respond_with @word_list do |format|
  format.xml { render :xml => @word_list, :status => :created }
end
于 2013-03-08T00:27:10.317 回答