Firebase 本地模拟器套件 |如何禁用缓存

发布于 2025-01-10 05:20:39 字数 403 浏览 0 评论 0原文

从 Firestore 检索文档并在 Firebase 模拟器控制台上手动删除它。数据不会在客户端被删除。

我必须使用 chrome 开发工具手动清除数据站点 输入图片此处描述

我尝试从 chrome 禁用缓存,但是不起作用 输入图片此处描述

On retrieving a doc from Firestore and manually deleting it on the Firebase Emulator console. The data doesnt get deleted on the client side..

I have to manually clear data site with chrome dev tools
enter image description here

I tried disabling cache from chrome but that doesn't work
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅此而已 2025-01-17 05:20:39

如果您使用的是 Angular..

在您的 app.module.ts

删除 enableIndexedDbPersistence(firestore)

provideFirestore(() => {
  if (environment.useEmulators) {
    const firestore = getFirestore();
    connectFirestoreEmulator(firestore, 'localhost', 8080);
    // enableIndexedDbPersistence(firestore);  <=============== Remove this line
    return firestore;
  } else return getFirestore();
}),

If you are using Angular..

On your app.module.ts

Remove enableIndexedDbPersistence(firestore)

provideFirestore(() => {
  if (environment.useEmulators) {
    const firestore = getFirestore();
    connectFirestoreEmulator(firestore, 'localhost', 8080);
    // enableIndexedDbPersistence(firestore);  <=============== Remove this line
    return firestore;
  } else return getFirestore();
}),
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文