1
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 5 years have passed since last update.

値にnull値が入っていたせいでJavascrpitで配列が文字列として認識された件

Posted at

何をやろうとしていたのか。

htmlのデータ属性に埋め込んでいた配列をjQueryのdata()メソッドで取得し、console.logで表示。
以下コード

word.js

var words = $(".word__wrapper").data('word');
        console.log(words);
        console.log(words[index]);
index.html.erb
<div class="word__wrapper" data-word='<%= @words.pluck(:id, :face, :image, :flip) %>'>
</div>

問題

2台のマックで全く同じコードを走らせたが、1方は配列型として取得でき、一方は文字列として認識された。

 配列型として認識された時のdata属性の中身

スクリーンショット 2018-05-26 12.56.44.png

 文字列として認識された時のdata属性の中身

スクリーンショット 2018-05-26 13.02.03.png

結論

文字列として認識された時に使用していたPCのデータベースにおいて、imageカラムのデフォルト値がNULLになっていた。
それが理由でなぜか配列として認識してもらえなかった。

解決策

スクリーンショット 2018-05-26 13.04.43.png


スクリーンショット 2018-05-26 13.05.14.png

以上で配列型として認識された。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?