我对 DOJO 1.8 还很陌生,想知道如何从 require 方法之外调用函数?我尝试实现一个淡入淡出的消息框。
我创建了方法:
require(["dojo/dom", "dojo/on", "dojo/domReady!" ], function(dom, on, ready) {
/*function which shows a msg-box on top of the page */
var showMsg = function(text) {
dom.byId("msgbox").innerHTML = text;
}
});
好的!它可以工作....但我不想从我的应用程序的其他地方调用它:
showMsg("Item saved");
但这不起作用: Uncaught ReferenceError: showMsg is not defined
我如何获得该参考?
谢谢您的帮助!
AFX