微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将CKEditor集成到PCF中,我想获取并设置CKEditor数据

如何解决将CKEditor集成到PCF中,我想获取并设置CKEditor数据

我正在制作PCF控件,并在其中包含CKEditor。 我在init()中生成脚本标签,并将src设置为CKEditor的CDN。 我正在使用HTML TextArea并将其替换为CKEditor(将类设置为CKEditor)。

在我的getoutputsupdateView()中,我无法返回或设置此CKEditor的值。我为此使用EVAL()无效。

我应该怎么做呢?

为简洁起见,我仅在代码下方发布所需的方法-

    public init(context: ComponentFramework.Context<IInputs>,notifyOutputChanged: () => void,state: ComponentFramework.Dictionary,container:HTMLdivelement)
    {
        this.createHTMLElements(container);
    }

    public updateView(context: ComponentFramework.Context<IInputs>): void
    {
        eval("CKEDITOR.instances['txtCKEditor].setData(" + context.parameters.HTMLContent + ")");
    }

    public getoutputs(): IoUtputs
    {
        return {HTMLContent: eval("CKEDITOR.instances['txtCKEditor'].getData()")};
    }

    private createHTMLElements(container:HTMLdivelement): void
    {
        var scriptElement: HTMLScriptElement;

        scriptElement = document.createElement("script");
        scriptElement.setAttribute("src",this.ckEditorCDN);

        this.textAreaElement = document.createElement("textarea");
        this.textAreaElement.setAttribute("rows","20");
        this.textAreaElement.setAttribute("cols","100");
        this.textAreaElement.setAttribute("class","ckeditor");
        this.textAreaElement.setAttribute("id","txtCKEditor");
        
        container.appendChild(scriptElement);
        container.appendChild(this.textAreaElement);
    }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。