Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
模型
控制器
错误
应用程序跟踪
app/controllers/statuses_controller.rb:35:in `update'
架构
更改您的status_params方法以添加:
status_params
params.require(:comment).permit(:user, :comment)
然后更改您尝试更新评论的所有地方以包含(status_params)在最后。
(status_params)