使用 umd RTK 版本中的 RTK 查询
我正在使用 umd 构建中的 Redux Toolkit (v1.8),因为我在不支持包管理集成的平台中使用它。
我试图访问 RTK 查询,但找不到通过 umd 脚本导出的全局来访问它的方法。
我想知道是否:
- 我错过了一些东西,但它就在那里,或者
- 有必要使用另一个脚本,或者
- 不可能从 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:
- I missed something and it's there, or
- It is necessary to use another script, or
- It is not possible to use RTK Query from the umd script
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个 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.