我有一个大小为 10000 的数组。所有这些都是文档 ID。我正在运行一个数组,需要从 Firestore 获取文档数据,并且需要在每个文档中添加新字段。但我面临以下错误
@firebase/firestore: Firestore (5.3.1): FirebaseError: [code=resource-exhausted]: Resource has been exhausted (e.g. check quota).
@firebase/firestore: Firestore (5.3.1): Using maximum backoff delay to prevent overloading the backend.
Error getting document: FirebaseError: Failed to get document because the client is offline.
at new t (https://www.gstatic.com/firebasejs/5.3.1/firebase-firestore.js:1:61679)
at Object.next (https://www.gstatic.com/firebasejs/5.3.1/firebase-firestore.js:1:308843)
at next (https://www.gstatic.com/firebasejs/5.3.1/firebase-firestore.js:1:308006)
at https://www.gstatic.com/firebasejs/5.3.1/firebase-firestore.js:1:277502
Run Code Online (Sandbox Code Playgroud)
请帮我解决这个问题。
我在带有 Ionic 的网络应用程序中使用 firebase,并且我想在用户成功更改密码后将用户重定向到特定页面(在我的情况下为登录页面)。目前,当用户点击密码重置链接时,他被重定向到另一个浏览器页面,显示他已成功更改密码。
更改密码后,我想将他重定向到我的网络应用程序的页面。有可能这样做吗?
html javascript web-applications firebase firebase-authentication
我有两个数组。
let array1 = ["Lahari", "Vijayasri"];
let array2 = ["Lahari", "Vijayasri", "Ramya", "Keerthi"];
Run Code Online (Sandbox Code Playgroud)
我想删除 array2 中的 array1 元素并打印最终的类似数组
result array = ["Ramya", "Keerthi"]
Run Code Online (Sandbox Code Playgroud)