easyXDM 与 MooTools 的冲突

发布于 2025-01-07 05:26:06 字数 121 浏览 0 评论 0原文

MooTools 封装了所有方法,当 easyXDM (http://easyxdm.net/wp/) 将 JSON 转换为字符串 (stringify) 时,MooTools 的方法就到了。 如何去除 Mootools 包装?

MooTools wrapped all methods and when easyXDM (http://easyxdm.net/wp/) convert JSON to string (stringify) methods of MooTools get there.
How can I remove Mootools wrapping?

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

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

发布评论

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

评论(1

眼趣 2025-01-14 05:26:06

你能说得更具体一些吗?请提供一个示例,如果可以的话,什么会中断,您会调用什么等等。

郑重声明,MooTools 不会接管原生 JSON 方法。它将在 JSON 主机对象上导出 JSON.encodeJSON.decode - 基于 .stringify / .parse,如果可用 - 或者如果不可用,它将添加自己的后备。

https://github.com/mootools /mootools-core/blob/master/Source/Utilities/JSON.js#L46-79

XDM 将检查 JSON 是否可用:

https://github.com/oyvindkinsey/easyXDM/blob/master/src /Core.js#L415

当 mootools 已经运行时 JSON 将被定义,但 JSON.stringify 可能不会,所以它应该做它的事情。

MooTools 也不提供 Object.toJSON ,因此它可能无法工作的另一种可能的方式不是:https://github.com/mootools/mootools-core/blob/master/Source/Types/Object.js

所以,除非你可以展示什么失败了,我们帮不了你。您可以做的一件事是,构建您自己的 MooTools 版本并取出 JSON(如果您不需要)。

http://mootools.net/core/ - 只需勾选您真正需要的内容即可。

can you please be more specific. provide an example, if you can, what breaks, what do you call etc.

For the record, MooTools will NOT take over the native JSON methods. It will export JSON.encode and JSON.decode on the JSON host object - based on .stringify / .parse, if available - or it will add its own fallbacks if not.

https://github.com/mootools/mootools-core/blob/master/Source/Utilities/JSON.js#L46-79

XDM will check if JSON is available here:

https://github.com/oyvindkinsey/easyXDM/blob/master/src/Core.js#L415

When mootools is already running JSON will be defined but JSON.stringify may not be so it should do its thing.

MooTools does not provide Object.toJSON either so the other possible way it may fail to work is not that: https://github.com/mootools/mootools-core/blob/master/Source/Types/Object.js

So, unless you can demonstrate what fails, we can't help you. One thing you can do is, build your own version of MooTools and take out JSON, if you don't want it.

http://mootools.net/core/ - just tick what you really need from it.

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