我有一些 textAngular 代码,我在其中多次观察范围内的变量?有没有一种简单的方法可以只创建一次这个手表,或者我可以检测到它存在吗???
代码部分是:
taRegisterTool('fontColor', {
display: "<button colorpicker type='button' class='btn btn-default ng-scope' title='Font Color' colorpicker-close-on-select colorpicker-position='bottom' ng-model='fontColor' style='color: {{fontColor}}'><i class='fa fa-font '></i></button>",
action: function (deferred) {
var self = this;
self.$watch('fontColor', function (newValue) {
self.$editor().wrapSelection('foreColor', newValue);
});
self.$on('colorpicker-selected', function () {
deferred.resolve();
});
self.$on('colorpicker-closed', function () {
deferred.resolve();
});
return false;
}
});
每次单击此按钮时,都会执行此操作。这个 $watch 导致多个实例被创建并继续存在。
根据下面“npe”的有用评论,我修改了代码以防止手表被多次创建。
新代码:
taRegisterTool('fontColor', {
display: "<button colorpicker type='button' class='btn btn-default ng-scope' title='Font Color' colorpicker-close-on-select colorpicker-position='bottom' ng-model='fontColor' style='color: {{fontColor}}'><i class='fa fa-font '></i></button>",
action: function (deferred) {
var self = this;
if (typeof self.listener == 'undefined') {
self.listener = self.$watch('fontColor', function (newValue) {
console.log(newValue);
self.$editor().wrapSelection('foreColor', newValue);
});
}
self.$on('colorpicker-selected', function () {
deferred.resolve();
});
self.$on('colorpicker-closed', function () {
deferred.resolve();
});
return false;
}
});
感谢您的洞察力!