gpt4 book ai didi

java - 我想在 firebase 中管理多个用户的点赞数

转载 作者:行者123 更新时间:2023-12-02 12:25:16 24 4
gpt4 key购买 nike

我想要检索点赞计数器并想要将结果上传到 firebase 数据库。如果另一个用户喜欢该帖子,则喜欢计数器应该增加该值,而不是从 0 开始。

DatabaseLOLCounter.child(post_key).child(mAuth.getCurrentUser().getUid()).child("counter").setValue('like counter value here');

下面是我的观看者

viewHolder.mLOL.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
processLOL=true;
DatabaseFacepalm.child(post_key).child(mAuth.getCurrentUser().getUid()).removeValue();
DatabaseAngry.child(post_key).child(mAuth.getCurrentUser().getUid()).removeValue();
DatabaseNeutral.child(post_key).child(mAuth.getCurrentUser().getUid()).removeValue();

DatabaseLOL.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
if (processLOL)
{
if(dataSnapshot.child(post_key).hasChild(mAuth.getCurrentUser().getUid()))
{
//Toast.makeText(MainActivity.this,mAuth.getCurrentUser().getUid(),Toast.LENGTH_LONG).show();
//if already reacted
//DatabaseLOLCounter.setValue(Count = Count - 1 );
updateLOLCounter(false,post_key);
DatabaseLOL.child(post_key).child(mAuth.getCurrentUser().getUid()).removeValue();
processLOL=false;

}
else
{
//if no react
updateLOLCounter(true,post_key);
//DatabaseLOLCounter.setValue(Count = Count + 1 );
DatabaseLOL.child(post_key).child(mAuth.getCurrentUser().getUid()).setValue("lol");
processLOL=false;
}
}

}

@Override
public void onCancelled(DatabaseError databaseError) {

}
});

}
});

在更新 lolCounter 中,我正在使用 inTransaction 管理器,但我不知道如何检索结果以及如何将其存储在数据库中,我已经尝试过,但它不起作用,请纠正我。

    private void updateLOLCounter(final boolean increment, final String post_key) {


DatabaseLOLCounter.runTransaction(new Transaction.Handler() {
@Override
public Transaction.Result doTransaction(MutableData mutableData) {
if (mutableData.getValue() != null) {
int value = mutableData.getValue(Integer.class);
if(increment)
{
value++;

} else {
value--;
}
mutableData.setValue(value);

}
return Transaction.success(mutableData);
}

@Override
public void onComplete(DatabaseError databaseError, boolean b,
DataSnapshot dataSnapshot) {
// Is the below method is right?
DatabaseLOLCounter.child(post_key).child(mAuth.getCurrentUser().getUid()).child("counter").setValue(dataSnapshot);
// Toast.makeText(MainActivity.this,dataSnapshot,Toast.LENGTH_LONG).show();

// Transaction completed
//Log.d(TAG, "likeTransaction:onComplete:" + databaseError);
}
});
}

控制台给我错误“TransactionTooLargeException”

最佳答案

当在 Activity 之间传递过多的 Intent 数据时,会发生TransactionTooLargeException。它与 Firebase 无关。 Here you can read more.

关于java - 我想在 firebase 中管理多个用户的点赞数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45529734/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com