聊天应用程序的Firebase安全规则

时间:2020-05-20 16:10:27

标签: firebase security firebase-realtime-database firebase-authentication rules

我的结构是:

return fetch(templatePath)
  .then(
    (response) => response.ok ? response.text() : Promise.reject(new Error(`Template ${templatePath} not found.`))
  )
  .then((templateHtml) => {
    newElement.innerHTML = templateHtml;

    while (newElement.firstChild) {
      oldElement.appendChild(newElement.firstChild);
    }
  })

例如,我希望当user1的uid等于chats / user1_user2 / members上的两个字段之一以及chatMessages的相同字段时,user1可以读写数据。

还是还有另一种更简单的方法? 谢谢。

0 个答案:

没有答案