0

我正在尝试通过使用 tinymce 而不是文本区域在我的应用程序模式上创建富文本编辑器。但我的 HTML 代码无法在富文本的内容区域显示为文本。我正在使用 Angular 2。

任何帮助都会得到帮助

import { Component, AfterViewInit, OnDestroy, Input, Output, EventEmitter } from 'angular2/core';
import { RdComponent, RdLib } from '../../../../../node_modules/mulberry/core';

declare let tinymce: any;

@Component({
  selector: 'mail-template',
  template: `
            <textarea style="height:15em"><p>{{ content }}</p></textarea>            
            `
})
export class MailTemplatesComponent extends RdComponent {

  @Input("rd-model") model: string;

  @Output() onEditorKeyup = new EventEmitter<any>();
  public editor: any;

  ngAfterViewInit() {
    console.log(this.model);
    tinymce.init({
      selector: 'textarea',
      setup: editor => {
        this.editor = editor;
        editor.on('keyup', () => {
          const content = editor.getContent();
          this.onEditorKeyup.emit(content);
        })
      }
    });
  }

  ngOnDestroy() {
    tinymce.remove(this.editor);
  }

}
<div class="col-md-12">
   <rd-field [rd-text]="translate('Mail İçeriği')"></rd-field>
   <mail-template [(rd-model)]="data.MailContent" rd-height="25em"></mail-template>
</div>

4

2 回答 2

0

我正在使用 angular2-froala-wyswiyg

这是我能找到的最好的并且易于使用(下面的链接)

https://libraries.io/npm/angular2-froala-wyswiyg#usage

npm install angular-froala-wysiwyg --save
npm update froala-editor --save

模块安装后的package.json (file)

  "dependencies": {
    .....
    "angular-froala-wysiwyg": "^2.7.2",
    ...
}

模块中的导入

import { FroalaEditorModule, FroalaViewModule } from 'angular-froala-wysiwyg';
...

@NgModule({
   ...
   imports: [FroalaEditorModule.forRoot(), FroalaViewModule.forRoot() ... ],
   ...
})

angular-cli.json(file) 对样式和脚本进行更改,如下所示

 "styles": [
    "styles.css",
    "../node_modules/froala-editor/css/froala_editor.pkgd.min.css",
    "../node_modules/froala-editor/css/froala_style.min.css",
    "../node_modules/font-awesome/css/font-awesome.css"
  ],
  "scripts": [
    "../node_modules/froala-editor/js/froala_editor.pkgd.min.js"
  ],

在您的组件模板中

 <textarea class="form-control" [froalaEditor] name="x" #x="ngModel [(ngModel)]="obj.name" required ></textarea>

在此处输入图像描述 编辑后显示为

<span [innerHTML]="obj.name"> </span> 

在此处输入图像描述

于 2017-11-27T10:56:05.497 回答
0

我找到了问题的最佳解决方案,我认为这对遇到同样问题的人会有所帮助。

http://estynedwards.com/blog/2015/12/04/getting%20started%20with%20angular%202/

于 2017-11-28T13:00:12.380 回答