2016-09-26 8 views
0

私は他の投稿を見ましたが、解決策のどれもが私の問題に適合しないようです。エラーはメソッドにありますFirebaseRef.setValue()Firebaseのsetvalue DatabaseException:クラスクラスでノードを解析できませんでした

Firebase serverにデータを保存しようとしています。

:私はカスタムオブジェクトとしてデータを保存しようとしたので、最初は私は基本的なハッシュとして保存しようとした、その後、エラーが思った

protected Boolean doInBackground(Void... params) { 
      // Database Connection, if no connection or what not, exception will be here 
      mDatabase = FirebaseDatabase.getInstance().getReference(); 
      Log.d(DBTAG, mDatabase.toString()); 

      // 'child database' 
      mBooksDatabase = mDatabase.child("books"); 
      mCurrentUser = mDatabase.child("users").child(mUserEmail); 

      // address to upload the book, later we can call newBookRef.getKey() to get the ID 
      // and use the ID to indicate the relationship between the owner and the book 
      final DatabaseReference newBookRef = mBooksDatabase.push(); 
      try { 
       Map<String, String> mBookTest = new HashMap<String, String>(); 
       mBookTest.put("ISBN", "9781566199094"); 
       mBookTest.put("title", "Book of Love"); 
       newBookRef.setValue(mBookTest, new Firebase.CompletionListener() { 
        @Override 
        public void onComplete(FirebaseError firebaseError, Firebase firebase) { 
         if (firebaseError != null) { 
          Log.e(DBTAG, "Data could not be saved. " + firebaseError.getMessage()); 
         } else { 
          Log.d(DBTAG, "Data saved successfully."); 
          // update the 'owns' list in user's data 
          final String bookRef = newBookRef.getKey(); 
          mCurrentUser.child("owns").child(bookRef).setValue("1"); 
          //TODO: we can use this to count how many of the same books an user has 
         } 
        } 
       }); 
      } catch (DatabaseException e){ 
       Log.e(DBTAG, "Error occurred", e); 
      } 
      // if owner is desired in book, we can modify this part 

      return true; 
     } 

エラーメッセージ(私はthisリンク内のチュートリアルに続きます)

09-26 20:37:12.631 5091-5399/bookjobs.bookjobs D/DB in BookController: https://bookjobs-6c56f.firebaseio.com 
09-26 20:37:12.641 5091-5399/bookjobs.bookjobs E/DB in BookController: Error occurred 
                     com.google.firebase.database.DatabaseException: Failed to parse node with class class bookjobs.bookjobs.BookController$UploadBookTask$1 
                      at com.google.android.gms.internal.zzakk.zza(Unknown Source) 
                      at com.google.android.gms.internal.zzakk.zzbq(Unknown Source) 
                      at com.google.android.gms.internal.zzakn.zzbr(Unknown Source) 
                      at com.google.firebase.database.DatabaseReference.setValue(Unknown Source) 
                      at bookjobs.bookjobs.BookController$UploadBookTask.doInBackground(BookController.java:59) 
                      at bookjobs.bookjobs.BookController$UploadBookTask.doInBackground(BookController.java:30) 
                      at android.os.AsyncTask$2.call(AsyncTask.java:295) 
                      at java.util.concurrent.FutureTask.run(FutureTask.java:237) 
                      at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234) 
                      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113) 
                      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588) 
                      at java.lang.Thread.run(Thread.java:818) 
09-26 20:37:15.831 5091-5169/bookjobs.bookjobs W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found. 
+1

firebaseの操作にAsyncTackを使用する必要はありません。firebaseはすでに最適化されており、ネットワーク関連の操作はすべてバックグラウンドスレッドで実行されます。 –

+0

どのようにして、エラーメッセージがHashMapを書くことができないのか分かりません。あなたのコードサンプルが正しいと再確認できますか? –

答えて

4

setValue()への呼び出しの完了リスナーは、従来の2.xx SDK:Firebase.CompletionListener()からのものです。新しい9.x.x SDKの補完リスナー、DatabaseReference.CompletionListener()を使用する必要があります。

2つのSDKは互換性がありません。新しいSDKは排他的に使用する必要があります。あなたのbuild.gradleは削除する更新:

compile 'com.firebase:firebase-client-android:2.x.x' 

は詳細についてはUpgrade Guideを参照してください。

+0

良いキャッチqbix!私とマイケルの両方がそれを見落としていました。 Firebaseの他の開発者を助けてくれてありがとう! –

関連する問題