我将这个 HTML 用于我的 ckEditor:
<textarea data-ck-editor="text" data-ng-model="modal.data.text"></textarea>
指示:
app.directive('ckEditor', [function () {
return {
require: '?ngModel',
link: function ($scope, elm, attr, ngModel) {
var ck = null;
var config = attr.editorSize;
var abc = attr.abc
var def = attr.def
if (config == 'wide') {
ck = CKEDITOR.replace(elm[0], { customConfig: 'config-wide.js' });
} else {
ck = CKEDITOR.replace(elm[0], { customConfig: 'config-narrow.js' });
}
如何从我的 HTML 中发送 editorSize、abc 和 def 的值?我可以把这个作为
data-ck-editor="text