我有dojo Custom小部件。
我需要从自定义小部件中发出一个事件, 这是我添加了事件监听器的代码
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript">
var dojoConfig = {
async: true,
parseOnLoad: true,
isDebug : true,
packages:[
{ name:"custom",
location:"/Test/js"
}
]
};
</script>
<script src="//localhost:8080/dojo1.9.0/dojo/dojo.js"></script>
</head>
<body>
<script>
require(["custom/MyWidget","dojo/on","dojo/dom-construct","dojo/_base/window","dojo/domReady!"],function(MyWidget,on,domconstruct,window){
var mywidget = new MyWidget();
mywidget.startup();
domconstruct.place(mywidget.domNode,window.body(),"after");
on(mywidget,"customevent",function(data){
console.log( " received notification "+data );
});
});
</script>
</body>
</html>
和小部件如下
define([
"dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_OnDijitClickMixin",
"dijit/_TemplatedMixin",
"dojo/text!./widget.html",
"dojo/on",
"dojo/_base/lang"
], function (declare, _WidgetBase, _OnDijitClickMixin, _TemplatedMixin, template,on,lang) {
return declare([_WidgetBase, _OnDijitClickMixin, _TemplatedMixin], {
templateString: template,
// your custom code goes here
_onClick:function()
{
},
postCreate : function ()
{
on(this.searchtextbox,"click",lang.hitch(this,"sendEvent"));
},
sendEvent : function(event)
{
console.log( "Click event in widget "+event );
this.emit("customevent",event.x)
}
});
});
// Widget.html
<div class="${baseClass}" data-dojo-attach-point="searchtextbox">
<p>
here your widget
</p>
</div>
问题就在这一行
this.emit("customevent",event.x)
正在抛出错误
答案 0 :(得分:6)
您不应该使用dojo/on
向窗口小部件添加事件处理程序,它仅适用于 DOM节点。如果您从dijit/_WidgetBase
延伸(与您一样),那么您可以使用一种名为on()
的方法,例如:
myWidget.on("customevent", function(data) {
console.log( " received notification "+data );
});
我不确定emit()
函数是做什么的,但似乎这就是问题所在。根据{{3}},您应该使用普通函数编写扩展点。例如:
postCreate : function () {
on(this.searchtextbox,"click",lang.hitch(this, "_onClick"));
},
_onClick: function(event) {
// This is where you put your code
console.log( "Click event in widget "+event );
this.onCustomEvent(event.x);
},
onCustomEvent: function() {
// This can be left empty, it will be used as the extension point
}
在这种情况下,您将click事件绑定到_onClick()
函数,该函数又使用正确的参数调用onCustomEvent()
。此函数供公众使用,可用于绑定自定义事件处理程序。
这是the docs。
答案 1 :(得分:1)
emit方法的第二个参数应该是一个对象,但我没有向它发送对象。
sendEvent : function(event)
{
console.log( "Click event in widget "+event );
this.emit("customevent",**event**)
}