这个游戏如何加载模块?
此游戏使用 ig.module('impact.font').requires('impact.image ')
对于impact/font.js
但是当我通过 Google 开发者工具查看源代码时,我没有看到 impact/font.js
的 (在 http://playbiolab.com 页面)为什么?他们如何加载它们?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有代码都在 biolab.js 中。 “模块”不是外部文件(至少在代码传递到浏览器时不是)。
All the code is in biolab.js. The 'modules' aren't external files (at least not by the time the code is delivered to the browser).
变量在 http://playbiolab.com/biolab.js 中定义。您还可以查看页面的源代码,然后搜索
如果您无法理解代码,因为它是打包的,请使用 http://jsbeautifier.org。
The variables are defined at http://playbiolab.com/biolab.js. Instead of starting with the developer tools, you can also view the source of the page, then search for
<script
(without closing>
).If you cannot understand the code, because it's packed, use http://jsbeautifier.org.