我正在尝试在google closure js库中创建自定义事件调度程序。我将此代码基于fx文件夹中的动画类,但我一直收到此错误..
“goog.events未定义”
但我在顶部包含了活动包。这是我的代码。
goog.provide('test.util.Animation');
goog.provide('test.util.Animation.EventType');
goog.provide('test.util.AnimationEvent');
goog.require('goog.events');
goog.require('goog.events.EventTarget');
goog.require('goog.events.EventType');
/**
* Constructor for an animation object.
* @constructor
* @extends {goog.events.EventTarget}
*/
test.util.Animation = function() {
goog.events.EventTarget.call(this);
};
goog.inherits(test.util.Animation, goog.events.EventTarget);
/**
* Events fired by the animation.
* @enum {string}
*/
test.util.Animation.EventType = {
ANIM_IN: 'anim_in',
ANIM_OUT: 'anim_out'
};
/**
* Class for an animation event object.
* @extends {goog.events.Event}
*/
test.util.AnimationEvent = function(type, anim) {
goog.events.Event.call(this, type);
};
goog.inherits(test.util.AnimationEvent, goog.events.Event);
我包含了所有必要的文件以及我编写的其他代码中的其他所有内容。它只是当我尝试从goog.events.EventTarget继承它抛出此错误。为了继承,我需要包含哪些东西? 如果我删除了继承调用,那么它不会抛出错误,但这会破坏我正在尝试做的目的。有任何想法吗?谢谢。
答案 0 :(得分:4)
我在谷歌关闭库讨论组中收到了这个答案。这是解决方案。
在导入脚本之前放置事件require:
<script>goog.require('goog.events');</script>
<script src="whatever your script is.js"></script>
问题是goog.require()需要在比你使用代码更早的传递上进行评估,并且goog.inherits()在同一传递上运行。