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 1 year has passed since last update.

【Flutter】Firestoreへ更新する時にセキュリティルールによるエラーをキャッチする

Posted at

セキュリティルールによって弾かれてもそれがわからない

セキュリティルールによってエラーとなった場合、アプリ側で成功したのか失敗したのか分かりません。
エラーキャッチする方法です。

Firestore.instance.collection("collection").document("document").setData({
    // data
  }).then((_) {
    // 更新成功時の処理
  }).catchError((error) {
    // エラー表示
    ScaffoldMessenger.of(context).showSnackBar(SnackBar(
      content: Text("セキュリティルールによるエラーが発生しました: $error"),
    ));
  });

エラーキャッチのサンプル

新規作成する場合のサンプルです。
ボタンを押して登録処理を行います。

child: ElevatedButton(
    onPressed: () {
        FirebaseFirestore.instance
            .collection('items')
            .doc()
            .set({
                'name': name,
                'created_at': timestamp,
                'updated_at': timestamp
            }).then((value) {
                    ScaffoldMessenger.of(context)
                        .showSnackBar(SnackBar(content: Text("登録に成功しました")));
                    }).catchError((error) {
                        ScaffoldMessenger.of(context).showSnackBar(
                            SnackBar(content: Text("セキュリティルールにるエラー: $error")));
                    });
    },
    child: const Text('登録'),
),
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?