我一直在研究Ruby on Rails v.4.0.0指南,只是完成了最后一段代码。但我认为有3个问题可能来自1个来源。我的SHOW方法似乎无论出于何种原因都不起作用。我有一个“显示”视图,但它给我错误“无法找到id = show的帖子”。并告诉我,我的PostsController第35行是错误的。我已经找了一段时间,似乎找不到任何有类似足够的问题的人。所以这是控制器和视图。
控制器:
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) %>
完整错误是:
PostsController#show中的ActiveRecord :: RecordNotFound 找不到具有id = show
的帖子注意:我患有阅读障碍,所以它可能只是一个拼写错误...
答案 0 :(得分:5)
params[:id]
等于"show"
而不是某个真实ID。您可能正在尝试访问错误的网址,例如/posts/show
而不是/posts/1
或其他ID。
答案 1 :(得分:2)
我无法发表评论,所以这是现在的答案,但您能确认您要包含的网址是否包含您要查找的帖子的ID?如果它正在寻找ID为“show”的帖子,您可能会转到yourUrl/posts/show
而不是yourUrl/posts/1
答案 2 :(得分:0)
您是否将PostController放在routes.rb?
中资源:发布