dojoConfig 与 djConfig

发布于 2025-01-07 16:11:10 字数 184 浏览 0 评论 0原文

我测试过在 dojo 1.7.1 上使用 var dojoConfig = { async : true, parseOnLoad : true} 没问题。我尝试使用 var djConfig = { async : true, parseOnLoad : true } 它也有效。

有什么区别以及我应该选择哪个

I have test to use var dojoConfig = { async : true, parseOnLoad : true} on dojo 1.7.1 it's ok. And I try to use var djConfig = { async : true, parseOnLoad : true } it's work too.

What is the difference and which I should choose

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

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

发布评论

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

评论(1

厌味 2025-01-14 16:11:10

dojoConfig 是新的标准配置对象。 djConfig 在 1.6 版本之前一直在使用,并且至少在 2.0 版本之前一直保持活动状态。我建议您在所有新项目中使用dojoConfig

djConfig 的旧对象名称已被弃用,但使用它的任何现有代码将继续工作,直到 2.0。在撰写本文时,大多数文档仍然使用 djConfig;这两个“拼写”是直接等效的,但从现在开始我们将采用并鼓励使用新的 dojoConfig 名称。

来源:http://dojotoolkit.org/documentation/tutorials/1.6/dojo_config/

dojoConfig is the new standard object for configurations. djConfig was in use until version 1.6 and they are keeping it active at least until version 2.0. I would advise you to use dojoConfig in all of your new projects.

The old object name of djConfig is deprecated, but any existing code using it will continue to work up until 2.0. At the time of writing, most documentation still uses djConfig; the two "spellings" are directly equivalent, but we'll adopt and encourage use of the new dojoConfig name from here on.

Source: http://dojotoolkit.org/documentation/tutorials/1.6/dojo_config/

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