の配列を検証Iは、次のデータ構造を検証するソリューションを探しています: 同じキー(propertyA
、propertyB
)および値(string
)の同じタイプのオブジェクトの配列。Firestore:オブジェクト
{
title: 'Hello World',
toValidate: [
{
propertyA: 'string', // Always the same keys
propertyB: 'string' // Always a string
},
{
propertyA: 'string',
propertyB: 'string'
}
]
}
もこれを疑問に思います。存在しない「のtypeof」演算子いるので、フィールドのデータの種類を確認する方法はありませんように思えます。 – JussiR
私の悪いです。タイプをチェックするには 'is'演算子があります。 https://firebase.google.com/docs/firestore/reference/security/#resource – JussiR