我使用的是Angular4'FroalaEditor,它使用的是'jquery'。
我已经成功地实现了。
现在我需要在插件中添加自定义按钮。
我发现以下solution
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import * as $ from 'jquery';
@Component({
selector: 'app-froala-editor',
templateUrl: './froala-editor.component.html',
styleUrls: ['./froala-editor.component.scss'],
encapsulation: ViewEncapsulation.None
})
export class FroalaEditorComponent implements OnInit {
options;
constructor() { }
ngOnInit(){
$.FroalaEditor.DefineIcon('alert', {NAME: 'info'});
$.FroalaEditor.RegisterCommand('alert', {
title: 'Hello',
focus: false,
undo: false,
refreshAfterCallback: false,
callback: function () {
alert('Hello!');
}
});
this.options={
toolbarButtons: ['bold', 'italic', 'underline', 'paragraphFormat','alert', '|', 'insertLink', 'insertImage', 'specialCharacters', 'color', '|', 'align', 'formatOL', 'formatUL', '|', 'undo', 'redo', 'clearFormatting', 'print'],
}
}
}
但我有以下错误。
“jQueryStatic”类型上不存在属性“FroaLaEditor”。
我发现了这个solution,但我不知道如何实现它。
有人面对过这个问题吗?
最佳答案
对我有效的解决方案是添加declare var $: any;
而不是import * as $ from 'jquery';
在使用编辑器导入组件之后。