1

想知道是否有一个全面的动作前/后功能,我有一个特定的功能,我想通过它来运行每个动作,而不是:

TRIGGERKEY1_pre_custom_trigger_fields: function(bundle) {
   function();
}
TRIGGERKEY1_pre_custom_trigger_fields: function(bundle) {
   function();
} 
TRIGGERKEY1_pre_custom_trigger_fields: function(bundle) {
   function();
}

我可以有类似的东西:

pre_custom_trigger_fields: function(bundle) {
   function();
}

搜索了脚本文档并没有看到任何东西,尝试了一些“猜测”无济于事!这可能吗?

谢谢!

4

1 回答 1

1

本地不可能做到这一点 - 但你可以这样做:

var commonFunc = function(){};
var Zap = {
    TRIGGERKEY1_pre_custom_trigger_fields: commonFunc,
    TRIGGERKEY2_pre_custom_trigger_fields: commonFunc,
    TRIGGERKEY3_pre_custom_trigger_fields: commonFunc
};

应该工作正常!

于 2016-09-14T15:20:50.193 回答