gpt4 book ai didi

javascript - 如何在 angular2 中使用 froala 事件

转载 作者:行者123 更新时间:2023-11-28 17:55:45 24 4
gpt4 key购买 nike

我在我的 angular2 项目中使用 froala。我已成功上传图片,但无法触发 image.uploaded 事件。在froala文档中,事件是这样的

$('.selector').on('froalaEditor.image.uploaded', function (e, editor, response) {
// Do something here.
});

但我无法在 ts 代码中实现这一点。

最佳答案

网上还很难找到的一件事是如何在 angular2 中使用 froala 的方法。

来自froala documentation ,你可以看到item.action,因此你可以将其用作angular2中的item.action()。例如隐藏工具栏。

typescript :

export class FroalaEditor {
public editor;
public model: string = '';
public options: Object = {
events: {
'froalaEditor.initialized': (e, editor) {
this.editor = editor;
}
}
}

showToolBar() {
this.editor.toolbar.show();
}
}

HTML:

<div [froalaEditor]="options" [(froalaModel)]="model"></div>

关于javascript - 如何在 angular2 中使用 froala 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44483878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com