#3 楼 @zj0713001 不是的,
那个 user1 和 user2 是我发布上来变成那样的,因为我选择成 html/erb 的模式 代码里依旧是
class ThecommentsController < ApplicationController
def create
@post = Post.find(params[:post_id])
@thecomment = @post.thecomments.new(params[:thecomment])
redirect_to @post if @thecomment.save
end
end
我只是把他原来用的 comment 换成 thecomment,所以应该是没有问题的啊
#1 楼 @kenshin54 没错,那个数据库的信息确实如此,很想问为什么会这个样子。更加想知道为什么提交 content 都为 null