简体   繁体   中英

Rendering Error with Devise and Mobylette

I am using Mobylette with Devise on my Rails 4 app.

When I try to sign up, sign in, or reset my password on my mobile device I get this error:

ActionController::MissingRenderer (No renderer defined for format: mobile)

Has anyone else had this issue?

I've tried setting up a fallback chain

mobylette_config do |config|
  config[:fallback_chains] = {
    mobile: [:mobile, :html]
  }
end

and adding this to the devise initializer

config.navigational_formats = ['*/*', :html, :mobile]

But continue to get the renderer error.

Any recommendations would be awesome, still new to mobile formatting.

Please modify

config/initializers/devise.rb

config.navigational_formats = [:"*/*", "*/*", :html, :mobile]

Solved the issue with the following..

created an initializer and added this:

ActionController::Responder.class_eval do
  alias :to_mobile :to_html
end

along with Preshant4020's suggestion

config.navigational_formats = [:"*/*", "*/*", :html, :mobile]

in the devise initialize and got it to work with no issues.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM