gpt4 book ai didi

angular - 如何在 Angular 2 中添加 TinyMce?

转载 作者:行者123 更新时间:2023-12-02 04:01:29 24 4
gpt4 key购买 nike

我是 Angular 2 的新手,并尝试将tinymce 集成到 Angular 2 中,但我无法在我的项目中使用tinymce。到目前为止我所做的是在我的项目中使用 Bower 安装了tinyMCe。所有js文件都已成功添加到我的项目中。然后我在布局页面中添加了所有引用,如下所示:

        <script src="~/lib/tinymce/tinymce.js"></script>
<script src="~/lib/tinymce/themes/modern/theme.js"></script>
<script src="~/lib/tinymce/plugins/link/plugin.js"></script>
<script src="~/lib/tinymce/plugins/paste/plugin.js"></script>
<script src="~/lib/tinymce/plugins/table/plugin.js"></script>

在此之后,我编写了将使用tineMce的组件,如下所示:

import { Component, OnInit } from "@angular/core";
import { Routes, RouterModule } from "@angular/router";
import { NgForm } from "@angular/forms";
import Page = require("../../interfaces/iPage");
import PageService = require("../../services/page.service");
@Component({
//no need for selector as it will be loaded via routing
templateUrl: "/page/addEdit"
})


export class AddEditPageComponent implements OnInit {
model = this.newModel();
errorMessage: any;
tinymce: any;

constructor(private pageService: PageService.PageService) {
this.tinymce.init({
selector: "[tinymce]"
});
}

ngOnInit() {

}

newModel(): Page.IPage {
return {
pageId: 0,
pageName: null,
title: null,
content:null
};
}

submitForm(form: NgForm) {
debugger;
this.pageService.save(this.model).subscribe(model => {
this.model = this.newModel();
},
null);
}


}

然后我在 html 上添加 textArea,如下所示:

<textarea class="form-control" name="model.content" [tinymce]="tinymce" style="height: 300px" [(ngModel)]="model.content" placeholder="Description"></textarea>

当我不使用tinYmce时,我的页面工作正常,但当我使用tinyMCe时,吊顶屏幕上出现此错误:模板解析错误:无法绑定(bind)到“tinymce”,因为它不是“textarea”的已知属性。

如果我删除 textarea 但不从 init 中删除tinYmce,则会出现此错误:类型错误:无法读取未定义的属性“init”

我不知道我做错了什么。请帮忙。

最佳答案

要在文本区域上使用[tinymce],您必须将其声明为新的输入属性。

import { Input } from '@angular/core';
@Component({....})
export class AppComponent {
@Input() tinymce: string;
}

TinyMCE 将需要一个有效的 css 选择器,并且您可能需要监听一些事件以支持实时绑定(bind)。

请参阅下面的完整实现

import { Component, AfterViewInit, OnDestroy, Output, EventEmitter  } from '@angular/core';

declare var tinymce: any;

@Component({
selector: 'my-app',
template: `
<h3>Angular 2 Embedding TinyMCE</h3>
<textarea>Start Typing</textarea>
<p>{{ content }}</p>
`
})
export class AppComponent implements AfterViewInit, OnDestroy {

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

ngAfterViewInit() {
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);
}

}

请注意,在我的例子中,我已经从 CDN 加载了tinymce,因此我不必设置主题文件。

<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>

关于angular - 如何在 Angular 2 中添加 TinyMce?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41681146/

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