Using requirejs with dojo 1.9.1

Can anybody provide me with a simple example of how to use requirejs to load dojo modules?

The requirejs.org website indicates it is best to use the dojo loader until a ticket is resolved - but that ticket appears to be resolved and is now closed.

I am encountering errors such as described here (duplicated below) only now with dojo 1.9.1.

Error:

TypeError: _3.add is not a function _3.add("dom-addeventlistener",!!document.addEventListener);

(I have an existing backbone app that uses requirejs and am simply trying to integrate in dojo charting).


You need to use the source/SDK version of the Dojo Toolkit. Built copies of AMD modules are not compatible between loaders.

链接地址: http://www.djcxy.com/p/92512.html

上一篇: 用require.js尝试模块加载(AMD)时出错

下一篇: 与dojo 1.9.1一起使用requirejs