如何在flutter的firestore中使用uid更新用户数据

Posted

技术标签:

【中文标题】如何在flutter的firestore中使用uid更新用户数据【英文标题】:How to update user data with uid in firestore in flutter 【发布时间】:2021-02-10 11:50:52 【问题描述】:

我正在做一个项目,我在 Fire 商店中存储了用户数据,包括姓名、电子邮件和用户角色,这是这个截图,用户角色定义为基本。check it out

现在这是我在颤振中的身份验证服务代码

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:http/http.dart';

class GSignInhelp 
 static FirebaseAuth _auth = FirebaseAuth.instance;

static signInWithGoogle() async 
GoogleSignIn googleSignIn = GoogleSignIn();
final account = await googleSignIn.signIn();
final auth = await account.authentication;
final credential = GoogleAuthProvider.credential(
  accessToken: auth.accessToken,
  idToken: auth.idToken,
);
final res = await _auth.signInWithCredential(credential);
return res.user;


static logOut()
GoogleSignIn().signOut();
return _auth.signOut();




String role = 'basic';

class Usertype 
static FirebaseFirestore _db = FirebaseFirestore.instance;

static saveUser(User user) async 
 Map<String,dynamic> userData = 
  'name': user.displayName,
  'email': user.email,
  'role' : role,
 ;

final userRef = _db.collection('users').doc(user.uid);
if((await userRef.get()).exists)
  get('role');
  userData.update('role', (value) => role);
else
  await userRef.set(userData);




当用户在这里成功付款时我想更新用户角色我正在使用 Razor 支付,代码在这里

@override
void initState() 
super.initState();
_razorpay =Razorpay();
_razorpay.on(Razorpay.EVENT_PAYMENT_SUCCESS, _handlePaymentSuccess);
_razorpay.on(Razorpay.EVENT_PAYMENT_ERROR, _handlePaymentError);
_razorpay.on(Razorpay.EVENT_EXTERNAL_WALLET, _handleExternalWallet);


@override
void dispose() 
// TODO: implement dispose
super.dispose();
_razorpay.clear();
 

 void openCheckout() async
   var option= 
     "key": "rzp_test_rkbMfLcwVZtwyk",
     'amount': _paymentamount*100,
    'name': 'ghori fashion designer',
    'description': 'expert bane',
    'prefill' : 
    'contact' : '1234567890',
    'email' : 'anything@gmail.com',
   ,
    'external' : 
    'wallet' : ['paytm']
  
  ;
  try
  _razorpay.open(option);
  
  catch(e)
  debugPrint(e);
  
  

 void _handlePaymentSuccess(PaymentSuccessResponse response)
 Fluttertoast.showToast(msg: "SUCCESS: "+ response.paymentId);
 setState(() 
  role = 'fullexpert';
 );
 

 void _handlePaymentError(PaymentFailureResponse response)
 Fluttertoast.showToast(msg: "Error: "+ response.code.toString() + ' - ' + response.message);
 

void _handleExternalWallet(ExternalWalletResponse response)
Fluttertoast.showToast(msg: "External Wallet: "+ response.walletName);

这是主要的活动代码

import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:gfd_official/Login_data/Login.dart';
import 'package:gfd_official/Login_data/gSignin_data.dart';
import 'package:gfd_official/Mainhome.dart';
import 'package:gfd_official/paid_screens/Expert1year.dart';

void main() async 
 WidgetsFlutterBinding.ensureInitialized();
 await Firebase.initializeApp();
 runApp(MyApp());
 

class MyApp extends StatelessWidget 
 @override
 Widget build(BuildContext context) 
  return MaterialApp(
  title: 'ghori fashion designer',
  theme: ThemeData(
    primarySwatch: Colors.blue,
  ),
  home: MySplashScreen(),
 );



class MySplashScreen extends StatefulWidget 
 @override
_MySplashScreenState createState() => _MySplashScreenState();


// ignore: camel_case_types
class _MySplashScreenState extends State<MySplashScreen> 
@override
void initState() 
// TODO: implement initState
super.initState();
Future.delayed(
    Duration(
      seconds: 3,
    ),
        () );
 

 @override
 Widget build(BuildContext context) 
 return StreamBuilder(
  stream: FirebaseAuth.instance.authStateChanges(),
  builder: (context, snapshot) 
    if (snapshot.hasData && snapshot.data != null) 
      Usertype.saveUser(snapshot.data);
      return StreamBuilder(
          stream: FirebaseFirestore.instance.collection('users').doc(
              snapshot.data.uid).snapshots(),
          builder: (BuildContext context, AsyncSnapshot snapshot) 
            if (snapshot.hasData && snapshot.data != null) 
              final user = snapshot.data.data();
              if(user['role'] == 'fullexpert')
                return Expert1year();
              else
                return Mainhome();
              
            
            return Material(
              child: Center(child: CircularProgressIndicator(),),);
          );
    
    return Loginpage();
  ,
);


当我运行应用程序并在成功付款后付款时,没有任何反应,当我注销并再次登录时,Firestore 中的角色发生了变化,但是当我使用帐户付款并注销时,我注意到有些奇怪,我只是刚刚登录的用户已更改,但已付款的用户使用不同的帐户角色登录。

我遇到的另一个问题是,下次用户再次登录该角色时,角色只会在 onw 时更改,而 basic 而不是 fullexpert

我已经用谷歌搜索了它,但由于 2020 年 firebase 发生了很大变化,所有方法都不适用。

如果有人可以帮助我如何使用用户唯一 ID 或 UID 更改用户角色,并且此更改将一直保留到用户升级角色或降级角色,并且它应该适用于特定用户

【问题讨论】:

尝试使用提供程序包。在提供程序中设置您的侦听器,并在将新值保存到公共变量后通知更改。 @BrandonPillay 你能解释一下吗 从哪里调用 _handlePaymentSuccess? @BrandonPillay 我正在使用 Razorpay 支付网关,它为我们提供了成功、失败和外部钱包的功能。 @BrandonPillay 没有工作 付款后没有任何反应,即使没有打印也请投票,以便它可以覆盖更多人 【参考方案1】:

当 _handlePaymentSuccess 被调用时,它会更新状态值 role,但您的用户文档流构建器中没有引用 role 试试这个:

未经测试

SuccessHandler(更新):

 void _handlePaymentSuccess(PaymentSuccessResponse response)
     Fluttertoast.showToast(msg: "SUCCESS: "+ response.paymentId);
     //Update the User role directly from here. When this is called the streambuilder will 
     //refesh. 
     userRef.update('role': 'fullexpert').then((value) => print('Done!'));
     //setState(() 
      //role = 'fullexpert';
     //);
     






 //String role = 'basic';
 DocumentReference userRef;

 class Usertype 
 static FirebaseFirestore _db = FirebaseFirestore.instance;
 
 static saveUser(User user) async 
  Map<String,dynamic> userData = 
   'name': user.displayName,
   'email': user.email,
   'role' : role,
  ;

 userRef = _db.collection('users').doc(user.uid);
  if((await userRef.get()).exists)
   //Try removing this as it redundant: 
   //get('role');//???
   //userData.update('role', (value) => role);
  else
   await userRef.set(userData);
  
 

【讨论】:

没有工作 付款后没有任何反应,即使没有打印也请投票,以便它可以覆盖更多人 在您登录和退出时,角色是否仍在变化? 你看到成功祝酒消息了吗? 那么这意味着没有调用成功处理程序。问题在于支付 API。 您使用的是哪个 Razor 付费套餐?

以上是关于如何在flutter的firestore中使用uid更新用户数据的主要内容,如果未能解决你的问题,请参考以下文章

Flutter:Firebase 身份验证和 Firestore 快照流

在 dart/flutter 中执行多次从 firestore 获取数据的异步函数

如何使用 Firestore 在 Flutter 中搜索文本

如何使用 Flutter 在 Firestore 中删除集合中的所有文档

如何在 Flutter 中使用 Firebase Auth 和 Firestore

如何在flutter的firestore中使用uid更新用户数据