1

我正在一个基于 Ember.js 的平台上工作,我在其中使用 nicEdit。这是我的代码

RichHTMLView = Ember.TextArea.extend({
    id: null,
    editor: null,
    didInsertElement: function(){
        var view = this;

        view.id = this.get("elementId");

        view.editor = new nicEditor({
                buttonList : ['bold','italic','underline','right','center','justify', 'link', 'ul', 'ol']
        }).panelInstance(view.id);

        //When the editor looses focus the content of the editor is passed to descr
        view.editor.addEvent('blur',function(){
            view.get('controller').set('descr',view.getViewContent());
        });

        //So the editor looks nice
        $('.nicEdit-panelContain').parent().width('100%');
        $('.nicEdit-panelContain').parent().next().width('100%');
    },
    getViewContent: function(){
        var view = this,
            inlineEditor = view.editor.instanceById(view.id);
        return inlineEditor.getContent();
    },
    willClearRender: function(){
        var view = this;
    }

});

因此,只要我在托管视图的页面上,它就可以很好地工作,但是如果我转换到另一条路线,视图会有一些剩余物,即编辑器被破坏,但我假设 nicEdit 跟踪事件绑定,所以我最终将blur事件绑定到undefined新上下文中的编辑器,因为视图不存在。

我最好的猜测是我需要以某种方式取消绑定 中的编辑器willClearRender,但我不知道如何。

4

1 回答 1

0

由于我没有得到回复并且nicEditremoveEvent被放弃,我对源代码进行了一些更改,以便通过添加以下内容来处理此问题bkEvent

removeEvent: function(A, B){

if (B){
    this.eventList = this.eventList || {};
    this.eventList[A] = this.eventList[A] || [];
    this.eventList[A].splice(this.eventList[A].indexOf(B),1);
}

然后我可以删除事件willClearRender

view.editor.removeEvent('blur',view.onBlur);

请注意,我没有使用多个编辑器对其进行测试,因为我的需求不需要,但是如果您有多个具有相同回调的编辑器,则未定义行为。

于 2013-09-03T14:09:13.190 回答