我目前正在尝试将 wysihtml5 与 Angular 指令一起使用,但我似乎无法正确触发更改事件。
以下是我设置的指令:
app.directive('wysiwyg', ['$parse', function() {
return {
restrict: "A",
require: "?ngModel",
link: function(scope, element, attrs, ctrl) {
var change = function() {
scope.$apply(function(){
ctrl.$setViewValue($(element).val());
});
};
$(element).wysihtml5({
"font-styles": true, //Font styling, e.g. h1, h2, etc. Default true
"emphasis": true, //Italics, bold, etc. Default true
"lists": true, //(Un)ordered lists, e.g. Bullets, Numbers. Default true
"html": false, //Button which allows you to edit the generated HTML. Default false
"link": true, //Button to insert a link. Default true
"image": true, //Button to insert an image. Default true,
"color": false, //Button to change color of font
"events": {
"change": function() {
window.console.log("changed");
change();
},
"newword:composer": function() {
change();
},
"paste": function() {
change();
}
}
});
}
};
}]);
根据 wysihtml5 的文档,这是您聆听 change 元素的方式。但是,它目前仅在模糊时触发,而不是在对编辑器进行更改时触发。是否存在我应该寻找的不同事件,或者我应该使用 Angular 指令以不同的方式进行处理?