RailsでインラインJSが動作しなくなったときの対応
RailsでインラインJSを書くと下記エラーで動作しなくなりました
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' https:". Either the 'unsafe-inline' keyword
原因は、Ruby on Rails 5.2の新機能にContent Security Policyが追加されたことでした。
デフォルトの設定のままではインラインJSが動作しないので
content_security_policy.rb
ファイルのpolicy.script_src
に:unsafe_inline
をつけることが必要になります。
例
content_security_policy.rb
policy.default_src :self, :https
policy.font_src :self, :https, :data
policy.img_src :self, :https, :data
policy.object_src :none
policy.script_src :self, :https, :unsafe_inline
policy.style_src :self, :https, :unsafe_inline
今回はrailsからJS側にデータ渡す必要があったため、インラインJSをやむを得ず使いましたが、
極力はJSファイルを読み込むように気をつけたいですね
Author And Source
この問題について(RailsでインラインJSが動作しなくなったときの対応), 我々は、より多くの情報をここで見つけました https://qiita.com/issan/items/bcf0ca414becfcdcfe3c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .