富文本编辑器

富文本编辑器,Rich Text Editor, 简称 RTE,
它提供类似于 Microsoft Word 的编辑功能。

常用的富文本编辑器:
​ 1. KindEditor http://kindeditor.net/
​ 2. UEditor http://ueditor.baidu.com/website/
​ 3. CKEditor http://ckeditor.com/

常用操作,看《kindeditor-4.1.10》完整的源码

保存内容的使用步骤:

  1. 页面引入script文件

    
    
    
    
    
  2. ​在当前页面上初始化编辑器

    
    
  3. (angularJS)在controller.js文件的保存操作中

    1. 获取富文本编辑器中的内容,赋值给实体
      $scope.entity.goodsDesc.introduction = editor.html();
    2. 添加成功之后,设置编辑器中的内容为空
      editor.html(’’);

你可能感兴趣的:(AngularJS)