DOJO 包含目录后面的文件
我在 resources/js/dojo1.6/dojo/dojo.js
中有 dojo 文件
我这里还有另一个文件 resources/js/pages/file1.js
这个文件需要另一个文件位于 resources/js/folder/file2.js
这就是我包含它的方式 dojo.require('folder.file2');
所以这三个文件夹在hirarchy
dojo1.6、pages 和 folder
当我运行应用程序时
,出现以下错误
File not found: /resources/js/dojo1.6/folder/file2.js
如何克服此错误。
I have dojo files in resources/js/dojo1.6/dojo/dojo.js
I have another file here resources/js/pages/file1.js
This file requires another file which is located at resources/js/folder/file2.js
This is how I am including it dojo.require('folder.file2');
So these three folder are in hirarchy
dojo1.6, pages and folder
When I run application
I got the following error
File not found: /resources/js/dojo1.6/folder/file2.js
How can I overcome this error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 dojo.registerModulePath 告诉 Dojo 相对于 dojo.js 的模块在哪里可以找到:
请参阅 http://dojotoolkit.org/reference-guide/dojo/registerModulePath.html 了解更详细的说明。
You need to tell Dojo where your modules can be found, relative to dojo.js, using
dojo.registerModulePath
:See http://dojotoolkit.org/reference-guide/dojo/registerModulePath.html for a more detailed explanation.