使用 umd RTK 版本中的 RTK 查询

发布于 2025-01-10 17:59:11 字数 228 浏览 1 评论 0原文

我正在使用 umd 构建中的 Redux Toolkit (v1.8),因为我在不支持包管理集成的平台中使用它。

我试图访问 RTK 查询,但找不到通过 umd 脚本导出的全局来访问它的方法。

我想知道是否:

  1. 我错过了一些东西,但它就在那里,或者
  2. 有必要使用另一个脚本,或者
  3. 不可能从 umd 脚本使用 RTK 查询

谢谢!

I am using Redux Toolkit (v1.8) from the umd build, as I am using it inside a platform that does not enable package management integration.

I was trying to access RTK Query, but could not find a way to access it through the global exported by the umd script.

I was wondering if:

  1. I missed something and it's there, or
  2. It is necessary to use another script, or
  3. It is not possible to use RTK Query from the umd script

Thanks!

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

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

发布评论

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

评论(1

寄与心 2025-01-17 17:59:11

有一个 UMD 构建位于 https ://unpkg.com/browse/@reduxjs/[email protected]/dist/query/rtk-query.umd.js 将填充 window.RTKQ

一般来说,您应该尝试使用 ESM 构建 - 大多数现代环境应该能够加载未捆绑的版本。任何类型的 UMD 构建都可能会在 RTK 2.0 中被删除 - 只是它不再是最新的 UMD 版本。

只是出于好奇:您在什么环境中工作?我无法想象任何仅适用于 UMD 构建的东西。

There is a UMD build at https://unpkg.com/browse/@reduxjs/[email protected]/dist/query/rtk-query.umd.js that will populate window.RTKQ.

Generally you should try to use the ESM build instead - most modern environments should be able to load that unbundled. Any kind of UMD build will probably be removed in RTK 2.0 - it is just not up to date to ship UMD any more.

Just out of curiosity: in what environment are you working? I cannot imagine anything that would work with only an UMD build.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文