代码之家  ›  专栏  ›  技术社区  ›  Christopher Mills

用于Firebase数据更新的setValue()导致更新对象中的其他字段在childEventListener中的onChildAdded中返回null

  •  0
  • Christopher Mills  · 技术社区  · 6 年前

    我有一个Firebase消息对象列表,每个对象都可以在活动打开之前更新,此时Firebase ChildEventListener() 放火(儿童在 onChildAdded() ).

    更新使用 setValue() status 字段:

    database.getReference("Messages").child(roomID).child(msgID).child("status").setValue("delivered");
    

    enter image description here

    这个 当活动开始时,对所有的孩子都很好。但是,对于那些状态“提前更新”的孩子(消息),他们会返回 null 对于除 字段。 在Firebase数据库中,所有字段都应该是(非空的),所以数据没有问题。 当退出活动并重新进入时,所有的儿童都返回。 ChildEventListener() 它们应该是(不再返回空数据)。

    简而言之,两个 ChildEventListener() 是对那个孩子的攻击。

    如果需要,可以提供更多的代码和上下文。告诉我。

    编辑1: onResume() )

    newMessageListner = myMessageRoomRef.addChildEventListener(new ChildEventListener() {
    
                @Override
                public void onChildAdded(@NonNull DataSnapshot dataSnapshot, String previousChildName) {
    
                    if (dataSnapshot.exists()) {
    
    
                        String messageKey = dataSnapshot.getKey();
                        Message messageClass = dataSnapshot.getValue(Message.class);
                        String messageUserID = messageClass.getUserId();
    
                            Log.d(TAG, "Message Key: " + messageKey);
                            Log.d(TAG, "Message Status: " + messageClass.getStatus());
                            Log.d(TAG, "Message User ID: " + messageUserID);
    
    }
    
                @Override
                public void onChildRemoved(DataSnapshot dataSnapshot) {}
    
                @Override
                public void onChildMoved(DataSnapshot dataSnapshot, String previousChildName) {}
    
                @Override
                public void onCancelled(DatabaseError databaseError) {
    
                }
            });
    

    编辑2: getValue() sendNotification() 在我的 FirebaseMessagingService

       private void sendNotification(RemoteMessage remoteMessage) {
            //Intent intent = new Intent(this, StudentChatActivity.class);
            String clickAction = remoteMessage.getData().get("click_action");
            Intent intent = new Intent(clickAction);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    
            String roomID = remoteMessage.getData().get("ROOMID");
            String origin = remoteMessage.getData().get("ORIGIN");
            String msgID = remoteMessage.getData().get("MSGID");
            Log.d(TAG, "Message data payload, roomID: " + roomID);
    
            database.getReference("Messages").child(roomID).child(msgID).child("status").setValue("delivered");
    
            intent.putExtra("ROOMID", roomID);
            intent.putExtra("USERID", UserID);
            intent.putExtra("USERNAME", UserName);
            intent.putExtra("ORIGIN", origin);
    
            PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
                    PendingIntent.FLAG_ONE_SHOT);
    
            String channelId = getString(R.string.received_message);
            Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
            NotificationCompat.Builder notificationBuilder =
                    new NotificationCompat.Builder(this, channelId)
                            .setSmallIcon(R.drawable.small_pickle)
                            .setContentTitle("FCM Message")
                            .setContentText(remoteMessage.getData().get("body"))
                            .setPriority(1)
                            .setAutoCancel(true)
                            .setSound(defaultSoundUri)
                            .setContentIntent(pendingIntent);
    
            NotificationManager notificationManager =
                    (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    
            // Since android Oreo notification channel is needed.
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                NotificationChannel channel = new NotificationChannel(channelId,
                        "Channel human readable title",
                        NotificationManager.IMPORTANCE_HIGH);
                notificationManager.createNotificationChannel(channel);
            }
    
            notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
        }
    
    0 回复  |  直到 6 年前