所以这是我的ckeditor指令(用coffeescript编写)
App.directive 'ckeditor', ->
require: '?ngModel'
link: (scope, elm, attr, ngModel)->
ck = CKEDITOR.replace(elm[0])
unless ngModel then return
ck.on 'pasteState', ->
scope.$apply ->
ngModel.$setViewValue(ck.getData())
ck.on 'blur', ->
console.log "blur"
# call function from ng-blur
ngModel.$render = (value)-> ck.setData(ngModel.$viewValue)
这就是我使用它的方式:
<textarea
ckeditor
ng-model="data[f.name]"
ng-blur="update(f.name)"
onblur="console.log('blur');">
</textarea>
如何在模糊事件上从 ng-blur 指令调用函数?我正在使用 1.2.0-rc.2 版本的 angular.js