我正在尝试使用simple_form
创建一个简单的博客应用在我的Post.html new.html.erb中,我有以下代码
<h3>Write your blog post here</h3>
<%= simple_form_for @post do |f| %>
<%= f.input :content %><br>
<%= f.submit %>
<% end %>
在index.html.erb中,我得到了
<%= @posts.each do |post| %>
<p>Post: <%= post.content %></p>
<% end %>
但是,我在Post
的索引页面上收到以下内容[#<Post id: 1, created_at: "2015-09-07 23:07:54", updated_at: "2015-09-07 23:07:54", content: nil>, #<Post id: 2, created_at: "2015-09-07 23:07:54", updated_at: "2015-09-07 23:07:54", content: nil>, #<Post id: 3, created_at: "2015-09-07 23:08:11", updated_at: "2015-09-07 23:08:11", content: nil>,
这是我的帖子控制器
def index
@posts = Post.all
end
def show
@post = Post.find(params[:id])
end
def new
@post = Post.new
end
def create
@post = Post.new(params[post_params])
if @post.save
success = true
message = "Nice!"
else
success = false
message = "Sucks!"
end
redirect_to root_path
end
private
def post_params
params.require(:post).permit(:content)
end
end
这是我的模特
class Post < ActiveRecord::Base
belongs_to :user
end
最后,向Post添加内容列的迁移
class AddContentToPosts < ActiveRecord::Migration
def change
add_column :posts, :content, :string
end
end
在我的帖子中输入文字后,我可以创建它。但我不确定它是否被保存,因为内容是“无”。这非常令人沮丧,因为它似乎是一个非常简单的问题。经过几个小时试图弄清楚发生了什么,在这里寻求帮助...... 谢谢!
答案 0 :(得分:1)
你有两个问题:
首先,这一行:
<%= @posts.each do |post| %>
需要<%
,而不是<%=
。
<%=
输出表达式的结果。 array.each
的结果是一个数组,这就是您所看到的浏览器。
其次,您访问params
是错误的。你正在使用
@post = Post.new(params[post_params])
您使用params[:post]
,或者使用post_params
,但不同时使用post_params
。您尝试使用params
的返回值,这是键和值的哈希,作为键再次访问@post = Post.new(params[:post])
# or
@post = Post.new(post_params)
。你需要以下任何一个:
<script type="text/JavaScript">
alert(date());
</script>