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

【Firebase】TimeStampクラスの変数をsessionStorageに入れて出すとただのObjectになる

Last updated at Posted at 2020-11-17

はじめに

タイトルが全てです.
JavaScriptを使った開発中,FirebaseのFireStoreから受け取った値をsessionStorageに保存し,再利用するコードを書きました.
その際,エラーが出てかなり苦戦したので,備忘録を兼ねて記事を書きました.

出たエラー

コンソールには以下のようなエラー文が表示されました.

.toDate is not a function.

原因

sessionStorageに入れるためにTimeStampクラスのものをJSON形式にすると,出てきたものはただのObjectになるみたい.

toDate()メソッドはTimeStamp型にしか使えないので,エラーが出ていたみたいです.

対処法

原因が分かれば,対処法は色々あると思います.
自分の場合はsessionStorageに入れる前にtoDate()メソッドを用いて,JSのdate型に直してからsessionStorageに入れました.

終わりに

JavaScriptは変数の型を指定しないのでこういったエラーがよく起こりそう.気を付けねば……
とりあえず,

not a function

って出てきたときは,変数の型をチェックするのがよさそう.

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?