0

在我的 Rails 5.1 应用程序中,我使用devise-authygem将 2fa 添加到我的应用程序中。有了这个表格...

= enable_authy_form multipart: true do
    = text_field_tag :country_code, '', required: true, id: 'country_code', aria_required: 'true'
    = telephone_field :cellphone, '', required: true, autocomplete: 'off', id: 'authy-cellphone', class: 'string required', aria_required: 'true'
    = button 'button', I18n.t( 'enable_authy', { scope: 'devise' } ), nil, 'submit', true, 'flex-end'

...我发布到以下控制器操作(来自 gem):

  def POST_enable_authy
    @authy_user = Authy::API.register_user(
      :email => resource.email,
      :cellphone => params[:cellphone],
      :country_code => params[:country_code]
    )

    if @authy_user.ok?
      resource.authy_id = @authy_user.id
      if resource.save
        set_flash_message(:notice, :enabled)
      else
        set_flash_message(:error, :not_enabled)
        redirect_to after_authy_enabled_path_for(resource) and return
      end

      redirect_to [resource_name, :verify_authy_installation]
    else
      set_flash_message(:error, :not_enabled)
      render :enable_authy
    end
  end

但正如您从日志中看到的那样,没有任何反应:

Started POST "/2fa/enable" for 127.0.0.1 at 2017-06-24 21:19:02 +0200
Processing by Devise::DeviseAuthyController#POST_enable_authy as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"5P1aSzQvWATGEBLEYYwoD7dS/6sCSzpAk24rnh1DK9ZV6S70WWt10ijmoAo9MlxyGDAol+ewZYAszooiDeZKQQ==", "country"=>"United States", "country_code"=>"us", "cellphone"=>["546876578"], "subdomain"=>""}
Cookie#domain returns dot-less domain name now. Use Cookie#dot_domain if you need "." at the beginning.
  Rendering devise/devise_authy/enable_authy.html.haml within layouts/application
Completed 200 OK in 3632ms (Views: 2461.8ms | ActiveRecord: 1.5ms)

它只是重定向到请求的来源模板。我不明白为什么会这样。


即使在 fork gem 之后,修改控制器以重定向到特定的URL,也没有任何反应。

4

1 回答 1

1

我不确定它是否适用,因为我在 Ruby/Sinatra 上体验过。我的帖子似乎是正确的,但它一直返回原始表格。问题出在默认的 AJAX 上。由于 AJAX 打算更新表单,否则它不会重定向。我指定 data-ajax="false" 来解决它。让我知道它是否有帮助。(发表评论作为答案。)

于 2017-06-25T14:00:08.010 回答