3
2

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.

LaravelからJavaScriptに配列変数を引き渡す方法

Last updated at Posted at 2020-04-25

Laravelで、コントローラから受け渡した配列変数をJavaScriptに渡す方法。

普通に、

const data = '{{json_encode($data)}}';
console.log(data);

のように渡すとダブルコーテーションが&quotのような文字になってしまう。

調べると、

JSON_UNESCAPED_UNICODEを、json_encodeの第二引数に入れてunicode文字列にされることを防ぎ。
!!で囲って、&quotにされることを防げるという。

そして、Laravel5.5以降は、@json()というbladeテンプレート用の関数で簡単にできるという。

const data = @json($data);

という書き方が結論のようにも思いましたが、今後外部ファイル化した時に、このことを忘れてはまる原因になりそうでしたので、一度は基本でやるということで、

const data = {!!json_encode($data, JSON_UNESCAPED_UNICODE)!!}

で対応しました。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?