我一直在研究Ruby on Rails v.4.0.0指南,並剛剛完成了最後一段代碼。但我有3個問題,我認爲可能來自1個來源。我的SHOW方法似乎不管用什麼原因。我有一個「顯示」視圖,但它給了我錯誤「無法找到帖子id = show」。並告訴我我的PostsController的第35行是錯誤的。我看了一會兒,似乎無法找到任何具有類似足夠的東西的人。所以這裏是控制器和視圖。找不到帖子id = show?
控制器:
1 class PostsController < ApplicationController
2
3 http_basic_authenticate_with name: "dhh", password: "secret",
4 except: [:index, :show]
5
6 def new
7 @post = Post.new
8 end
9
10 def create
11 @post = Post.new(params[:post])
12
13 if @post.save
14 redirect_to @post
15 else
16 render 'new'
17 end
18 end
19
20 def edit
21 @post = Post.find(params[:id])
22 end
23
24 def update
25 @post = Post.find(params[:id])
26
27 if @post.update(params[:post].permit(:title, :text))
28 redirect_to @post
29 else
30 render 'edit'
31 end
32 end
33
34 def show
35 @post = Post.find(params[:id])
36 end
37
38 def index
39 @post = Post.all
40 end
41
42 def destroy
43 @post = Post.find(params[:id])
44 @post.destroy
45
46 redirect_to posts_path
47 end
48
49 private
50 def post_params
51 params.require(:post).permit(:title, :text)
52 end
53 end
查看:
1 <%= @post.each do |post| %>
2 <p>
3 <strong> Title: </strong>
4 <%= @post.title %>
5 </p>
6
7 <p>
8 <strong> Text: </strong>
9 <%= @post.text %>
10 </p>
11
12 <%end%>
13
14 <h2> Comments </h2>
15 <%= render @post.comments %>
16
17 <h2>Add a comment:</h2>
18 <%= render "comments/form" %>
19
20 <%= link_to 'Back to Posts', posts_path %>
21 | <%= link_to 'Edit Post', edit_post_path(@post) %>
完整的錯誤是:
的ActiveRecord :: RecordNotFound在PostsController#顯示 可能找不到ID後=顯示
注:我是誦讀困難的,所以它可能只是一個拼寫ling error ...
你能告訴我們你的'routes.rb'? –