邮政与地点之间的关联

时间:2014-07-18 10:29:15

标签: ruby-on-rails ruby-on-rails-3 ruby-on-rails-4 ruby-on-rails-3.1 ancestry

这是我的第一个ruby on rails应用程序。

模型位置和帖子,位置有很多帖子。我使用ancestry gem创建位置为树状结构。

class Post < ActiveRecord::Base
 belongs_to :location, :counter_cache => true
end

class Location < ActiveRecord::Base
 include Tree
 has_ancestry :cache_depth => true
 has_many :posts
end

这是我的帖子控制器

class PostsController < ApplicationController
 before_action :set_post, only: [:show, :edit, :update, :destroy]

 def index
  @posts = Post.all
 end

 def show
 end

 def new
  @post = Post.new
 end


 def edit
 end

 def create
  @post = Post.new(post_params)

   respond_to do |format|
    if @post.save
     format.html { redirect_to @post, notice: 'Post was successfully created.' }
     format.json { render action: 'show', status: :created, location: @post }
    else
     format.html { render action: 'new' }
     format.json { render json: @post.errors, status: :unprocessable_entity }
    end
  end
end

def update
 respond_to do |format|
  if @post.update(post_params)
   format.html { redirect_to @post, notice: 'Post was successfully updated.' }
   format.json { head :no_content }
  else
   format.html { render action: 'edit' }
   format.json { render json: @post.errors, status: :unprocessable_entity }
  end
 end
end

def destroy
 @post.destroy
  respond_to do |format|
   format.html { redirect_to posts_url }
   format.json { head :no_content }
  end
 end

private
 def set_post
  @post = Post.find(params[:id])
 end

# Never trust parameters from the scary internet, only allow the white list through.
 def post_params
  params.require(:post).permit(:name, :location_id)
 end
end

在Post _form.html.erb

中创建包含位置的帖子
<%= simple_form_for @post do |f| %>
<% if @post.errors.any? %>
 <div id="error_explanation">
  <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:   </h2>
   <ul>
    <% @post.errors.full_messages.each do |msg| %>
     <li><%= msg %></li>
    <% end %>
   </ul>
  </div>
<% end %>

<%= f.input :name %>

<%= f.select :location_id, Location.all.at_depth(4) { |l| [ l.name, l.id ] } %>

 <div class="actions">
  <%= f.submit %>
 </div>
<% end %>

我的问题是

第一个问题-f.select:location_id,如何显示位置名称,而不是位置ID,我使用的是简单形式

第二个问题 - 帖子索引错误&lt;%= post.location.name%&gt;

<% @posts.each do |post| %>
 <tr>
  <td><%= post.name %></td>
  <td><%= post.location.name  %></td>
  <td><%= link_to 'Show', post %></td>
  <td><%= link_to 'Edit', edit_post_path(post) %></td>
  <td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %>  </td>
</tr>
<% end %>

2 个答案:

答案 0 :(得分:1)

第一个问题:

检查下拉列表的simple_form语法。在docs中提到了,你应该能够自己解决这个问题。

第二个问题:

违规post是否真的有相关的location?如果没有,则无法显示当然的名称。要解决这些nil错误,请使用try

<%= post.location.try(:name)  %>
仅当try不是name时,

location才会在location上调用方法nil

答案 1 :(得分:0)

关于您的第一个问题:

也许您应该阅读&#34; options_for_select&#34;

http://guides.rubyonrails.org/form_helpers.html#option-tags-from-a-collection-of-arbitrary-objects

<% cities_array = City.all.map { |city| [city.name, city.id] } %>
<%= options_for_select(cities_array) %>

关于第二个问题: 你的错误是什么?

也许你的一个&#34; post.location&#34;没有。 如果是这样,请尝试:

post.location.name unless post.location.nil?

希望这可以提供帮助