作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 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/
我是一名优秀的程序员,十分优秀!