将值传递给“注入的脚本”而不是依赖全局变量?
http://dojotoolkit.org/reference-guide/loader/amd .html#generic-script-injection
当我使用 require() 进行通用脚本注入时,有什么方法可以传递注入的脚本值而不必依赖全局变量?
http://dojotoolkit.org/reference-guide/loader/amd.html#generic-script-injection
When I'm using require() to do generic script injection, is there any way I can pass the injected script values without having to rely on globals?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常在 Dojo 领域,当您在某个东西中 require() 时,您需要一个类,然后当您实例化该类时,您会传入构造函数参数。
如果您只想访问通用 Javascript,您可以使用 addOnLoad 回调来应用您想要的值
: 1.7(AMD 加载程序):
请查看此处以获取更多信息:dojo.require 概述
Usually in Dojo land, when you require() in something, you are requiring a class, and then when you instantiate the class, you pass in constructor args.
You could use the addOnLoad callback to apply values as you want, if you just want access to generic Javascript:
Or in Dojo > 1.7 (AMD loader):
Take a look here for more info: dojo.require Overview