Angular2+ 集成ng2-ckeidtor并實(shí)現(xiàn)圖片上傳

注:

????ng2-ckeditor的github地址:https://github.com/chymz/ng2-ckeditor#readme

????CKEditor的配置均參考官方API:https://ckeditor.com/docs/

?????文章中使用的ckeditor版本:4.5.11

1.在項(xiàng)目引入ng2-ckeditor依賴

  • 在index.html引入ckeditor.js鏈接
1.png

注:引用外部的鏈接的好處是可以利用CDN加速并且可以減輕服務(wù)器的壓力等等,但是項(xiàng)目有可能會在局域網(wǎng)中訪問粘衬,因此這里我采用的方式把當(dāng)前的ckeditor.js資源下載到了本地隘谣。

  • 在index.html引入本地目錄assets/core/base/ckeditor/下的ckeditor.js資源

    <script src="assets/core/base/ckeditor/ckeditor.js"></script>
    
  • 在項(xiàng)目跟目錄下執(zhí)行以下命令拼苍,進(jìn)行安裝ng2-ckeditor

    npm install ng2-ckeditor
    
  • 在SystemJS config配置中加入以下配置

    System.config({
      map: {
        'ng2-ckeditor': 'npm:ng2-ckeditor',
      },
      packages: {
        'ng2-ckeditor': {
          main: 'lib/index.js',
          defaultExtension: 'js',
        },
      },
    });
    

注:以上配置都是根據(jù)官方github上的說明而來撤蚊,更多配置信息請參考ng2-ckeditor(github)

2.在angular2的組件中使用ng2-ckeditor

  • 在本地目錄assets/core/base/ckeditor/下配置config.js
2.png

config.js

CKEDITOR.editorConfig = function (config) {
    // 富文本的背景色
    config.uiColor = '#F8F8F8';
    config.language = 'zh-cn';
    // 選擇自定義工具集
    config.toolbar = 'Basic';
    // 去掉圖片預(yù)覽的中文字
    config.image_previewText = ' ';
    config.removeDialogTabs = 'image:advanced;image:Link';
    // 自己的定義的工具集
    config.toolbar_Basic = [
        ['Maximize', 'Source'],
        ['Undo', 'Redo', 'Cut', ' Copy', 'Paste', 'PasteText', 'PasteFromWord',],
        ['Link', 'Unlink', 'Anchor', 'Image', 'Table'],
        ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
        ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript'],
        ['NumberedList', 'BulletedList', 'Outdent', 'Indent', 'Blockquote'],
        ['Styles', 'Format', 'Font', 'FontSize', 'TextColor', 'BGColor'],
        ['HorizontalRule', 'Smiley', 'SpecialChar', 'Checkbox']
    ];
    // 全部的工具集
    config.toolbar_Full = [
        {
            name: 'document',
            items: ['Source', '-', 'Save', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates']
        },
        {name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']},
        {name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt']},
        {
            name: 'forms',
            items: ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField']
        },
        '/',
        {
            name: 'basicstyles',
            items: ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat']
        },
        {
            name: 'paragraph',
            items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl']
        },
        {name: 'links', items: ['Link', 'Unlink', 'Anchor']},
        {
            name: 'insert',
            items: ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe']
        },
        '/',
        {name: 'styles', items: ['Styles', 'Format', 'Font', 'FontSize']},
        {name: 'colors', items: ['TextColor', 'BGColor']},
        {name: 'tools', items: ['Maximize', 'ShowBlocks', '-', 'About']}
    ];
};
  • app.module.ts
import { CKEditorModule } from 'ng2-ckeditor';

@NgModule({
  // ...
  imports: [CKEditorModule],
  // ...
})
export class AppModule {}
  • app.component.html
<ckeditor [(ngModel)]="mVZZArticle.content" [config]="mVZZConfig" debounce="500"></ckeditor>
{{mVZZArticle.content}}
  • app.component.ts
export class AppComponent extends AppBaseComponent implements OnInit {

    public mVZZArticle;
    public mVZZConfig;

    constructor() {
        super();
    }

    ngOnInit() {
        this.mVZZArticle = {content: null};
        this.mVZZConfig = {filebrowserImageUploadUrl: '/xxx/uploadImageAddress'};
    }
}

注:在這里配置了filebrowserImageUploadUrl參數(shù)主要是顯示上傳到服務(wù)器按鈕,如下圖:

3.png

3.編寫JAVA后端接受ckeditor圖片接口

  • FileUploadController.java
@RequestMapping(value = "/uploadfileByCK", method = RequestMethod.POST)
    @ApiOperation(value = "Ckeditor表單上傳文件", notes = "")
    public void handleFormUploadByCkEditor(StandardMultipartHttpServletRequest request, HttpServletResponse response) {
        try {
            String rp = "";
            Map<String, MultipartFile> files = request.getFileMap();
            String relWebPathPrefix = appConfig.getResource().getUploadPrefix();
            relWebPathPrefix = relWebPathPrefix.replace("/**", "");
            String relativPathPrefix = appConfig.getResource().getPath();
            Iterator<String> iterator = request.getFileNames();
            if (iterator.hasNext()) {
                String name = iterator.next();
                MultipartFile file = files.get(name);
                String fn = file.getOriginalFilename();
                rp = this.handleFile(file.getInputStream(), relativPathPrefix, fn);
            }
            // 返回絕對路徑
            String fullPath = appConfig.getResource().getHost() + relativPathPrefix + rp;
            // 使用response直接返回結(jié)果
            PrintWriter out = response.getWriter();
            String fullContentType = "text/html;charset=UTF-8";
            response.setContentType(fullContentType);
            String callback = request.getParameter("CKEditorFuncNum");
            out = response.getWriter();
            out.println("<script type=\"text/javascript\">");
            out.write("window.parent.CKEDITOR.tools.callFunction(" + callback + ",'" + fullPath + "');");
            out.println("</script>");
            // 使用json返回格式坚冀,未測試該代碼是否正確執(zhí)行
            // 成功:{"uploaded":1,"fileName":"文件名.文件格式","url":"上傳成功后得資源路徑url"}
            // 失敗: {"uploaded":0,"error":{"message":"資源上傳錯誤得原因..."}}
        } catch (Exception e) {
            throw new BusinessException("文件上傳異常:" + e.getCause().getMessage());
        }
    }
    
/**
     * 
     * @param file
     * @param relativPathPrefix 相對路徑前綴
     * @param fileName
     * @return
     * @throws IOException
     */
    private String handleFile(InputStream input, String relativPathPrefix, String fileName) throws IOException {
        String sp = File.separator;

        String date = DateUtils.parseToString(new Date(), "yyyyMMdd");
        String newFilePath = appConfig.getResource().getDir() + relativPathPrefix + sp + date + sp;

        File uploadpath = new File(newFilePath);

        if (!uploadpath.exists()) {
            uploadpath.mkdirs();
        }

        // 重命名文件
        int start = fileName.lastIndexOf(".");
        String fileSuffix = fileName.substring(start);
        fileName = UUID.randomUUID().toString() + fileSuffix;

        String newFile = newFilePath + fileName;
        String relatePath = sp + date + sp + fileName;

        BufferedInputStream inBuff = new BufferedInputStream(input);

        // 新建文件輸出流并對它進(jìn)行緩沖
        FileOutputStream output = new FileOutputStream(newFile);
        BufferedOutputStream outBuff = new BufferedOutputStream(output);

        // 緩沖數(shù)組
        byte[] b = new byte[1024 * 5];
        int len;
        while ((len = inBuff.read(b)) != -1) {
            outBuff.write(b, 0, len);
        }
        // 刷新此緩沖的輸出流
        outBuff.flush();
        // 關(guān)閉流
        inBuff.close();
        outBuff.close();
        output.close();
        input.close();
        relatePath = relatePath.replaceAll("\\\\", "/");
        return relatePath;
    }

注:對于CKEditor的方式一定要按照下圖代碼中的那樣抄谐,對于這種返回方法個人感覺不是很好惊畏,但是找了很多文檔也未找對應(yīng)的修改方式。

4.png

最終效果圖

5.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末栓票,一起剝皮案震驚了整個濱河市决左,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖哆窿,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件链烈,死亡現(xiàn)場離奇詭異,居然都是意外死亡挚躯,警方通過查閱死者的電腦和手機(jī)强衡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來码荔,“玉大人漩勤,你說我怎么就攤上這事∷踅粒” “怎么了越败?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長硼瓣。 經(jīng)常有香客問我究飞,道長,這世上最難降的妖魔是什么堂鲤? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任亿傅,我火速辦了婚禮,結(jié)果婚禮上瘟栖,老公的妹妹穿的比我還像新娘葵擎。我一直安慰自己,他們只是感情好半哟,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布酬滤。 她就那樣靜靜地躺著,像睡著了一般寓涨。 火紅的嫁衣襯著肌膚如雪盯串。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天戒良,我揣著相機(jī)與錄音嘴脾,去河邊找鬼。 笑死蔬墩,一個胖子當(dāng)著我的面吹牛译打,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播拇颅,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼奏司,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了樟插?” 一聲冷哼從身側(cè)響起韵洋,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤竿刁,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后搪缨,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體食拜,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年副编,在試婚紗的時候發(fā)現(xiàn)自己被綠了负甸。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡痹届,死狀恐怖呻待,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情队腐,我是刑警寧澤蚕捉,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站柴淘,受9級特大地震影響迫淹,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜为严,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一敛熬、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧梗脾,春花似錦、人聲如沸盹靴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽稿静。三九已至梭冠,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間改备,已是汗流浹背控漠。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留悬钳,地道東北人盐捷。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像默勾,于是被迫代替她去往敵國和親碉渡。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容