Firebase DatabaseException: Failed to convert value of type java.lang.Long to String

前端 未结 7 1175
挽巷
挽巷 2020-12-01 14:50

com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Long to String

is the error I keep getting w

7条回答
  •  醉酒成梦
    2020-12-01 15:40

    Try adding quotes (") around the numbers:

    For example mobile_phone = "1234" instead of mobile_phone = 1234

    Image

提交回复
热议问题