7

我从一个链接调用这个 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'

entry_url 是什么?它为什么要找它?我需要在模型中包含一些东西吗?它只有用于变量的 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

谢谢您的帮助。

4

2 回答 2

9

当您说 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 helper

format.json { render json => { :entry => @entry, :status => created, :location => user_entry_url(@user, @entry) }}
于 2013-03-26T05:13:36.263 回答
0

如果您使用的是 Rails3,这可能是因为使用 rails3,url 已成为路径

前任:

#rails2
entry_url

#rails3
entry_path

所以尝试entry_path而不是entry_url

于 2013-03-26T06:06:11.327 回答