我开始研究 Rails 4,我想看看一些东西,只是好奇。
我想查看通过表单(帖子)发送的所有参数。
我尝试这样做:
def create
@article = Article.new(article_params)
article_params.inspect
..
..
..
end
但是创建过程仍在继续,我没有看到检查的参数。
而且,在rails console,回调是:
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-25 11:00:53 -0300
[2013-09-25 11:00:53] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
所以,我想停止申请,比如 php 中的 exit()。
或者,在 Rails 中正确的方法是什么?
我怎样才能做到这一点?(我只是学习,没有错误)。