我在DOJO中声明了以下单例对象。我想知道是否有任何方法可以在Chrome控制台中跟踪它,例如在watch
上使用window.mySingleTone
这样的内容。
// App (singletone)
define(['dojo/topic', 'ntv/state', ], function (_topic, _state) {
return {
init: function () {
console.log('app:init');
}
};
});
答案 0 :(得分:1)
如果您正在寻找获取此模块返回对象的引用的方法,则在模块已加载后随时调用require(mid)
将返回该模块。您也应该能够将其添加为监视表达式。