0

私はプログラミングとレールに比較的慣れていないので、甘やかしてください:)

私は自分のためにブログを含むウェブサイトを構築しています。ネストされた2つのモデルがあり、RESTを使用して記事やコメントに対して特定のアクションを実行する方法を理解していないようです。

コメントが検証に合格しない場合にコメントを作成すると、ユーザーが間違いを修正してコメントを再送信できるように、ページを再度レンダリングする必要があります。レンダリングしようとすると、テンプレートが見つからないというエラーが表示されます。

コードは次のとおりです。

このコードはgithub-> https://github.com/MariusLucianPop/mariuslp-にもあります。

ルート.rb

Mariuslp::Application.routes.draw do

  get "categories/new"

  root :to => "static_pages#index"

  match "login" => "visitors#login" # not rest
  match "logout" =>"visitors#logout" # not rest
  match "comment" => "articles#show"

  resources :articles do 
  resources :comments
end

  resources :tags, :taggings, :visitors, :categories, :comments


end

articles_controller.rb

def show
  @article = Article.find(params[:id])
  @comment = @article.comments.new
end

コメント_controller.rb

def create
    article_id = params[:comment].delete(:article_id)
    @comment = Comment.new(params[:comment])
    @comment.article_id = article_id
    if @comment.save
      redirect_to article_path(@comment.article_id)
    else
      render article_path(@comment.article_id,@comment) ## This one doesn't work
    end
  end

  def new
    @comment = Comment.new
  end

 def destroy 
    Comment.find(params[:id]).destroy
    redirect_to articles_path()
 end

ビュー-記事: _comment.html.erb

<div class="comment">
<%= comment.body %><br />
<%= link_to "Delete Comment", article_comment_path(@article), :method => :delete,    :confirm => "Are you sure you want to delete this comment?" %>
</div>

_comment_form.html.erb

<%= form_for @comment do |f|%>

    <%= f.hidden_field :article_id%>

    <%= f.label :body %><br />
    <%= f.text_area :body, :cols => 50, :rows => 6 %><br />

    <%= f.submit%>
<%end%>

show.html.erb

<p><%= link_to "<< Back to Articles", articles_path%></p>

<div class = "article_show">
    <%= label_tag :category_id %>
    <%= @article.category_id%> <br />

    <%= label_tag :title%>: 
    <%= @article.title%> <br />

    <%= label_tag :body%>: 
    <%= @article.body%> <br />

    <%= label_tag :tag_list%>:
    <%= @article.tag_list%><br />
</div>

<br />
<% if session[:username]== "marius"%>
<div class ="admin">
    <%= link_to "Edit", edit_article_path(@article)%>
    <%= link_to "Delete", article_path(@article), :method => :delete, :confirm => "Are you sure you want to delete this article ?"%>
</div>
<%end%>
<br />



<%= render :partial => 'comment', :collection => @article.comments %>

<%= render :partial => 'comment_form'%>
4

1 に答える 1

3

問題を指摘した場所で使用しようとしましたか?

render 'articles/show'

article_comment_pathビューテンプレートを保存する場所だけでなく、フルパスであるため、使用する必要はありません。この場合、必要なのはビューだけです。当然のことながら、このビューで使用するすべてのインスタンス変数を必ず取得する必要があります。

アップデート:

@article = Articles.find(article_id)
render 'articles/show'
于 2012-05-15T13:30:08.007 に答える