0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

railsのerbファイルでRailsヘルパーにjavascript変数を使う方法。

Posted at

何をしたいのか

<script>
  Javascriptの変数 = "テスト"
  $('.image-upload-box').append(`<%= f_img.hidden_field :image, value: Javascriptの変数 %>`);
</script>

というふうに使いたかったのですが
これではエラーが発生してしまい使用できません。

解決方法

<script>
  Javascriptの変数 = "テスト"
  $('.image-upload-box').append(`<%= f_img.hidden_field :image, value: '${Javascriptの変数}' %>`);
</script>

このようにしたらvalueにjavascriptの変数を使うことができました。

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?