easyXDM 与 MooTools 的冲突
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能说得更具体一些吗?请提供一个示例,如果可以的话,什么会中断,您会调用什么等等。
郑重声明,MooTools 不会接管原生 JSON 方法。它将在 JSON 主机对象上导出
JSON.encode
和JSON.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
andJSON.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 butJSON.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.jsSo, 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.