我目前已经编写了一些代码,这些代码将在自定义后调用函数
.trigger()
打电话。这就是所谓的:
function _visitAddTag(state, listener) {
if (state.properties.action = "RedoAddTag") contextMenu.unhide();
var $target = contextMenu.getContextMenuUI().tags; // Grab tag elements
var callback = function () {
if (listener) {
google.maps.event.removeListener(listener);
}
$target.off("tagIds-updated", callback);
contextMenu.hide();
next.call(contextMenu.getTargetLabel(), state.transition);
};
$target.on("tagIds-updated", callback());
}
这个
next.call()
行导致触发此方法:
function () { // 'this' is contextMenu.getTargetLabel(), as called in Onboarding.js/_visitAddTag()
tracker.push('Onboarding_Transition', {onboardingTransition: "tag-attribute-1"});
var tags = this.getProperty('tagIds');
return tags == [2] ? "adjust-heading-angle-1" : "redo-tag-attribute-1" // Where 2 is the tag_id of the "points into traffic" tag
}
其中返回值为
"redo-tag-attribute-1"
会导致整个事情再次循环。
我在这里看到了递归的可能性,特别是如果
"tagIds-updated"
事件以某种方式在第二个函数调用内部触发。但是,当我调试代码时,该事件只触发一次。有人知道这里发生了什么吗?我是一个javascript新手,所以可能我错过了一些明显的东西。