-1

私は解決できない問題があります。私は2つのモデルを作った。映画と呼ばれる1つのモデルが親モデルであり、レビューと呼ばれる別のモデルが子モデルです。子モデルの検証条件がありますが、ビューには表示されません。子モデルRuby on Railsのエラー検証

フィルムモデル

class Film < ApplicationRecord 
has_many :reviews 

validates_presence_of :filmtitle, presence: true 
validates_presence_of :filmdescription, presence: true 
validates_presence_of :filmdirector, presence: true 
validates_presence_of :filmrating, presence: true 
validates_presence_of :filmstarname, presence: true 
end 

レビューモデル

class Review < ApplicationRecord 
validates :rating, presence: true 
validates :commenter, presence: true 
validates :body, presence: true 
belongs_to :film 
end 

レビューコントローラ

class ReviewsController < ApplicationController 
def create 
    @film = Film.find(params[:film_id]) 
    @review = @film.reviews.create(review_params) 
    redirect_to film_path(@film) 
end 

private 
def review_params 
    params.require(:review).permit(:commenter, :body, :rating) 
end 
end 

フィルムshow.html.erb

<% if @film.errors.any? %> 
<div id="error_explanation"> 
    <h2> 
    <%= pluralize(@film.errors.count, "error") %></h2> 
    <ul> 
    <% @film.errors.full_messages.each do |msg| %> 
     <li><%= msg %></li> 
    <% end %> 
    </ul> 
    </div> 
    <% end %> 
<%= form_for([@film, Review.new]) do |f| %> 
<p> 
<%= f.label :commenter %><br> 
<%= f.text_field :commenter, :placeholder => 'Your name' %> 
</p> 
<p> 
<%= f.label :body %><br> 
<%= f.text_area :body, :placeholder => 'Your comment' %> 
</p> 
    <p> 
    <%= f.label :rating %><br> 
    <%= f.select :rating, ['1 Star', '2 Stars', '3 Stars', '4 Stars', '5 Stars'] %> 
</p> 
    <p> 
<%= f.submit %> 
    </p> 
<% end %> 
あなたはルビーオンレール-3、ルビーオンrails-でそれをタグ付けしているしているのはなぜ

フィルムコントローラ

class FilmsController < ApplicationController 
before_action :set_film, only: [:show] 

# GET /films 
# GET /films.json 
def index 
@films = Film.all.paginate(page: params[:page], per_page: 30) 
@reviews = Review.new 
end 

# GET /films/1 
# GET /films/1.json 
def show 
end 

# GET /films/new 
def new 

end 

# GET /films/1/edit 
def edit 
end 

# POST /films 
# POST /films.json 
def create 

end 

# PATCH/PUT /films/1 
# PATCH/PUT /films/1.json 
def update 

end 

# DELETE /films/1 
# DELETE /films/1.json 
def destroy 

end 

private 
# Use callbacks to share common setup or constraints between actions. 
def set_film 
    @film = Film.find(params[:id]) 
end 

# Never trust parameters from the scary internet, only allow the white list through. 
def film_params 
    params.require(:film).permit(:filmtitle, :filmdescription) 
end 
end 

route.rb

Rails.application.routes.draw do 
    resources :films do 
resources :reviews 
    end 


    resources :rentals 
    resources :buys 
    resources :admin 
    resources :adminrentals 
    resources :adminfilms 
    resources :logins 
    resources :admins_login 
    resources :games 


    get '/adminCool' => 'admins_login#index' 

    get '/adminlogin' => 'admins_sessions#new' 
    post '/adminlogin' => 'admins_sessions#create' 
    get '/adminlogout' => 'admins_sessions#destroy' 

    get '/adminsignup' => 'admins#new' 
    post '/admins' => 'admins#create' 


    get '/login' => 'sessions#new' 
post '/login' => 'sessions#create' 
get '/logout' => 'sessions#destroy' 

get '/signup' => 'users#new' 
post '/users' => 'users#create' 

get '/cool' => 'logins#index' 



end 
+0

を試してみてください4、およびruby-on-rails-3.2 ...これはあなたがすべてのバージョンで経験している問題ですか?コントローラの実際のコードはどこですか? – David

+0

上記の両方のコントローラについて説明しています。レンダリング機能にヒットするたびにhttp:// localhost:3000/films/18/reviewsアドレスに移動します。 http:// localhost:3000/films/18に戻ります。私はGastonのコードを使用しました(下記)。 – javacoder

答えて

0

def create 
    @film = Film.find(params[:film_id]) 
    @review = @film.reviews.new(review_params) 
    if @review.save 
     redirect_to film_path(@film) 
    else 
     render "films/#{@film.id}" 
    end 
end 
+0

エラーメッセージは表示されませんが、空白の結果がインターフェイスに表示されます。 – javacoder

+0

以下を実行すると、{:locale => [:en]、:formats => [:html]、:variants => []、:ハンドラ=> [ :raw、:erb、:html、:builder、:ruby、:coffee、:jbuilder]}。検索されたもの:* "C:/ Users/azhan/Desktop/film_project/app/views" ?????? – javacoder

+0

申し訳ありませんが、二重引用符がありません。レンダリング "films/show/#{@film.id}"は機能しますか? – Gaston

関連する問題