What is the main difference between require() and define() function in dojo and when would we use either?

耗尽温柔 提交于 2019-12-03 04:58:02

问题


I am new to learning dojo and I have come across the require() and define() functions and I can not get my head around either of them. Also, when would I use either of them? A small demo or example would be beneficial. Many Thanks!


回答1:


require and define are part of the asynchronous module definition (AMD) API.

You use define to define a module that can be consumed by other code. Generally, define will be used in a javascript file. The javascript file is defining a module. All Dojo files use define.

You use require when you are not defining a module, but you require modules that have been defined. Generally, require will be used in HTML pages. The HTML page is not a module, but requires modules to present the page to the user.

AMD API

https://github.com/amdjs/amdjs-api/wiki/AMD



来源:https://stackoverflow.com/questions/11559270/what-is-the-main-difference-between-require-and-define-function-in-dojo-and

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!