Angular2+ 集成ng2-ckeidtor并实现图片上传

注:

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

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

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

1.在项目引入ng2-ckeditor依赖

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

注:引用外部的链接的好处是可以利用CDN加速并且可以减轻服务器的压力等等,但是项目有可能会在局域网中访问,因此这里我采用的方式把当前的ckeditor.js资源下载到了本地。

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

    <script src="assets/core/base/ckeditor/ckeditor.js"></script>
    
  • 在项目跟目录下执行以下命令,进行安装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',
        },
      },
    });
    

注:以上配置都是根据官方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';
    // 去掉图片预览的中文字
    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参数主要是显示上传到服务器按钮,如下图:

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直接返回结果
            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返回格式,未测试该代码是否正确执行
            // 成功:{"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);

        // 新建文件输出流并对它进行缓冲
        FileOutputStream output = new FileOutputStream(newFile);
        BufferedOutputStream outBuff = new BufferedOutputStream(output);

        // 缓冲数组
        byte[] b = new byte[1024 * 5];
        int len;
        while ((len = inBuff.read(b)) != -1) {
            outBuff.write(b, 0, len);
        }
        // 刷新此缓冲的输出流
        outBuff.flush();
        // 关闭流
        inBuff.close();
        outBuff.close();
        output.close();
        input.close();
        relatePath = relatePath.replaceAll("\\\\", "/");
        return relatePath;
    }

注:对于CKEditor的方式一定要按照下图代码中的那样,对于这种返回方法个人感觉不是很好,但是找了很多文档也未找对应的修改方式。

4.png

最终效果图

5.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容