Ruby NoMethodError - BlahController 的未定义方法“blah_url”

2024-04-19

我从链接调用这个js:

function createNewTopLevelEntry(){
var user_id = $("#user").val();
var header = prompt("Enter the name");  
$.ajax( '/users/' + user_id + '/entries', {
    data: { 
        entry: { header: header,
                 user: user_id } },
    type: 'POST',
    cache: false,
    dataType: 'json',
    success: displayTopLevelEntries
});

}

它击中了这个控制器:

def create
  @entry = Entry.new(params[:entry])
  respond_to do |format|
    if @entry.save
      format.html { redirect_to @entry, notice: 'Entry was successfully created.' }
      format.json { render json: @entry, status: :created, location: @entry }
    else
      format.html { render action: "new" }
      format.json { render json: @entry.errors, status: :unprocessable_entity }
    end
  end
end

这是服务器上的响应:

Started POST "/users/1/entries" for 127.0.0.1 at 2013-03-25 21:50:36 -0700
Processing by EntriesController#create as JSON
Parameters: {"entry"=>{"header"=>"Hi", "user"=>"1"}, "user_id"=>"1"}
(0.1ms)  begin transaction
SQL (0.5ms)  INSERT INTO "entries" ("completed", "created_at", "endtime", "header", "parent", "starttime", "starttimeset", "text", "totaltime", "updated_at", "user") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)  [["completed", nil], ["created_at", Tue, 26 Mar 2013 04:50:36 UTC +00:00], ["endtime", nil], ["header", "Hi"], ["parent", nil], ["starttime", nil], ["starttimeset", nil], ["text", nil], ["totaltime", nil], ["updated_at", Tue, 26 Mar 2013 04:50:36 UTC +00:00], ["user", "1"]]
(2.5ms)  commit transaction
Completed 500 Internal Server Error in 10ms

NoMethodError - undefined method `entry_url' for #<EntriesController:0x007fb22b9f7fd8>:
(gem) actionpack-3.2.11/lib/action_dispatch/routing/polymorphic_routes.rb:129:in `polymorphic_url'
(gem) actionpack-3.2.11/lib/action_dispatch/routing/url_for.rb:150:in `url_for'
(gem) actionpack-3.2.11/lib/action_controller/metal/rendering.rb:60:in `_process_options'
(gem) actionpack-3.2.11/lib/action_controller/metal/streaming.rb:208:in `_process_options'
(gem) actionpack-3.2.11/lib/action_controller/metal/renderers.rb:34:in `block in _handle_render_options'

入口网址是什么?它为什么要找它?我需要在模型中包含一些东西吗?它只有变量的 attr_accessors 。

class Entry < ActiveRecord::Base
  attr_accessible :completed, :endtime, :header, :starttime, :starttimeset, :totaltime, :user, :text, :parent
end

这是我的路线文件:

Tasks::Application.routes.draw do
  match '/users/:id/projects' => 'users#show_projects_for_user'
  authenticated :user do
    root :to => 'home#index'
  end
  root :to => "home#index"
  devise_for :users
  resources :users do 
    resources :entries
  end
end

谢谢您的帮助。


当您说redirect_to @entry 时,entry_url 是要求您重定向到的地址

您的路由文件中没有条目资源。您确实在用户中嵌套了一个,但是您需要传递该条目。

redirect_to [ @user, @entry ]

刚刚看到您的评论 - 如果它在 JSON 路径上执行此操作,您需要类似地

location: [@user, @entry]

基本上,在您要求 Rails 为条目构建 url 的任何地方,您都需要传递该条目的用户,因为您在路由中将条目嵌套在用户内,而不是作为独立的资源路由。

添加编辑以响应评论,因为评论中没有格式:

是的,这将有助于删除该位置,因为它将不再调用帮助程序来在 json 中构建该位置,但我假设您想要这样做。因此,请尝试以下操作来使该位置正常工作:

format.json { render json => { :entry => @entry, :status => created, :location => [@user, @entry] }}

根据您的评论...如果这不起作用,那么让我们尝试直接调用 url 助手

format.json { render json => { :entry => @entry, :status => created, :location => user_entry_url(@user, @entry) }}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Ruby NoMethodError - BlahController 的未定义方法“blah_url” 的相关文章

随机推荐