Ассоциация между почтой и местонахождением

Это мое первое приложение ruby ​​on rails.

Модель Location и Post, Location имеет много записей. Я создаю местоположение как древовидную структуру с драгоценным камнем предков.

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

Создание поста с местоположением в посте _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, как отображать имя местоположения, а не идентификатор местоположения, я использую с простой формой

Второй вопрос - почтовый индекс получил ошибку в <% = post.location.name%>

<% @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 ответа

Решение

Первый вопрос:

Проверить simple_form синтаксис для раскрывающегося списка. Это упомянуто в документации, и вы должны быть в состоянии заставить это работать самостоятельно.

Второй вопрос:

Оскорбляет ли post действительно имеет отношение location? Если он не имеет, он не может отображать имя, конечно. Чтобы противостоять этим nil ошибки, используйте try:

<%= post.location.try(:name)  %>

try вызовет метод name на location только если location не является nil,

Для вашего первого вопроса:

Может быть, вы должны прочитать о "options_for_select"

http://guides.rubyonrails.org/form_helpers.html

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

На ваш второй вопрос: в чем ваша ошибка?

Может быть, один из ваших "post.location" - ноль. Если это так, попробуйте:

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

Надеюсь, что это может помочь

Другие вопросы по тегам