web-dev-qa-db-ja.com

FirestoreはDocumentSnapshotのフィールドの値を取得します

右側のコレクションに対応するドキュメントのDocumentSnapshotを取得してdocument変数に保存したFirebase Firestoreデータベースがある場合、フィールド「username」でそのDocumentSnapshotの値を取得するにはどうすればよいですか?フィールドには文字列値があります。

enter image description here

17
Paradox

DocumentSnapshot にはメソッドがあります getString() これはフィールドの名前を取り、その値を文字列として返します。

String value = document.getString("username");
23
Doug Stevenson

getメソッドを使用してフィールドの値を取得できます

String username = (String) document.get("username");  //if the field is String
Boolean b = (Boolean) document.get("isPublic");       //if the field is Boolean
Integer i = (Integer) document.get("age")             //if the field is Integer

DocumentSnapshot のドキュメントをチェックアウト

6
Ali

ドキュメントのコンテンツを取得するには、DocumentReferenceを実行する必要があります。

シンプルなものはこのようになります。

DocumentReference docRef = myDB.collection("users").document("username");
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
     public void onComplete(@NonNull Task<DocumentSnapshot> task) {
          if (task.isSuccessful()) {
               DocumentSnapshot document = task.getResult();
                    if (document != null) {
                         Log.i("LOGGER","First "+document.getString("first"));
                         Log.i("LOGGER","Last "+document.getString("last"));
                         Log.i("LOGGER","Born "+document.getString("born"));
                    } else {
                         Log.d("LOGGER", "No such document");
                    }
               } else {
                    Log.d("LOGGER", "get failed with ", task.getException());
                }
          }
     });

欠点は、フィールド値を取得するためにドキュメントIDを知る必要があることです。

4
Steffo Dimfelt

フィールドのデータを文字列として参照できるのは、onCompleteの内部にいるときだけですが、外部で参照しようとするとできます。 nullPointerExceptionが発生し、アクティビティがクラッシュします。

// Gets user document from Firestore as reference
    DocumentReference docRef = mFirestore.collection("users").document(userID);

    docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
        @Override
        public void onComplete(@NonNull Task<DocumentSnapshot> task) {
            if (task.isSuccessful()) {
                DocumentSnapshot document = task.getResult();
                if (document.exists()) {

                    Log.d(TAG, "DocumentSnapshot data: " + document.getData());
                    Log.d(TAG, "db firstName getString() is: " + document.getString("firstName"));
                    Log.d(TAG, "db lastName getString() is: " + document.getString("lastName"));

                    mFirstName = (String) document.getString("firstName");
                    mLastName = (String) document.getString("lastName");
                    Log.d(TAG, "String mFirstName is: " + mFirstName);
                    Log.d(TAG, "String mLastName is: " + mLastName);

                } else {
                    Log.d(TAG, "No such document");
                }
            } else {
                Log.d(TAG, "get failed with ", task.getException());
            }
        }
    });

    //string checking outside the docRef.get().addOnCompleteListener code
    //commented it out because it causes a Java.lang.NullPointerException: println needs a message
    //Log.v("NAME", mFirstName);
    //Log.v("NAME", mLastName);

    // sets the text on the TextViews
    tvFirstName = (TextView)findViewById(R.id.tvFirstName);
    tvFirstName.setText(mFirstName);
    tvLastName = (TextView)findViewById(R.id.tvLastName);
    tvLastName.setText(mLastName);
0
karldusenbery