实际上,我正在构建一个系统,在此系统中,用户在我的应用程序上注册并通过电子邮件确认他们的帐户后,将被重定向到向导进程页面(内置于Js),在该页面中,用户将被要求填写更多信息。// application_controller.rb before_filter :fill_in_profile
def fill_in_profile
if user
只有当我在AddressController中添加skip_before_action :verify_authenticity_token时,它才会起作用。有人知道为什么吗?我使用的是rails 4.1.8 skip_before_action :verify_authenticity_token# This does not work
class App::V1::AddressController < App