LoginSignup
0
0

More than 3 years have passed since last update.

Angular FirebaseでFirestoreの更新ができなかった

Posted at

結論

シークレットウィンドウを試してみて

症状

angularfire2または@angular/fireパッケージにおいてFirestoreのwriteができない。
なぜかreadはできる。ということでプロジェクトの向き先が間違っているということもない。
セキュリティルールはオープンになっている。

this.angularfirestore.collection('test/')
  .add({ value: test })
  .then(console.log)
  .catch(console.log);

みたいに書いてもログも何も出ずただ動かない。

解決まで別プロジェクト作ったりで4時間かかった……

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