0
想要爲不同的數據應用不同的規則。Firebase數據庫,我的Firebase應用程序中的每個數據數據的不同規則
例如:我的數據是
ContactUs
-Ksdasda4sd
name: "Ram"
email: "[email protected]"
message: "Hello how are u"
HotelLocation
-Ksdaseeesd
name: "Hotel Name"
address: "Near Highway"
city: "Bangalore"
沒有登錄聯繫我們的數據可以通過公共,其中HotelsLocations可以讀取,只有登錄後寫來讀寫。
這個配置都需要認證。
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
罐是有可能
https://firebase.google.com/docs/database/security/securing-data – cartant
感謝ü,能夠配置 – Manu