angularjs中ckeditor的destroy問題

來源:互聯網
上載者:User

標籤:edit   tor   ckeditor   判斷   上傳   解決   name   instance   檢查   

項目中,在切換了頁面的tab頁後會發現上傳圖片的操作報錯,檢查後發現問題根源是切換了tab頁重新載入頁面時ckeditor又會建立一次,這個時候的ckeditor已經不是第一次建立的那個了,所以上傳圖片的方法中會報錯。

解決方案:在ckeditor每次建立之前判斷一下,如果有ckeditor則destroy掉,重新建立新的,保證頁面上始終只有一個ckeditor,具體如下:

  • 在ckeditor的directive中:
    console.log(CKEDITOR.instances.myCKeditor ); //①if(CKEDITOR.instances.myCKeditor){//如果CKEDITOR已經建立存在則執行destroy                                    CKEDITOR.instances.myCKeditor.destroy();}console.log(CKEDITOR.instances.myCKeditor);  //②   var ckeditor=CKEDITOR.replace(<HTMLTextAreaElement>element[0]);//保持始終建立新的CKEDITORconsole.log(CKEDITOR.instances.myCKeditor);  //③
  • 說明:其中,myCKeditor是頁面中textarea的name值
    <textarea ckeditor-Directive name="myCKeditor"></textarea>
  • 三個console.log列印的情況如下:
    •   首次進入頁面時由於之前是沒有ckeditor存在的,所以①和②都是undefined,執行建立代碼後③是建立出來的ckeditor對象;
    •   切換了tab頁後,①是之前建立的ckeditor對象,執行了destroy()方法後②是undefined,執行建立代碼後③是新的ckeditor對象。

 

angularjs中ckeditor的destroy問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.