LoginSignup
1
0

More than 5 years have passed since last update.

JPmobileを使用している時にresponseとしてjsを返す場合の注意点

Last updated at Posted at 2018-07-17

背景

jpmobileのgemを使用して、hogehoge_smart_phoneみたいなファイル名にしたら、
使用デバイスに応じて、viewを表示してくれる便利なgem
(partialまでsmart_phone化するからちょっと好きではないw)

コード

respond_to do |format|
  format.html
  format.js
end
  • remote: trueでgetしているのに、HTMLが返却されていた。
  • action.js.erbはちゃんと用意してあって、アプリケーションサーバーも再起動済み

原因

  • action.html.erb, action_smart_phone.html.erbが存在する場合は、action.js.erbもデバイスに応じて作らないといけなかった
  • 例) pc: action.js.erb, sp: action_smart_phone.js.erb

トホホ :sob:

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0