Angular-UEditor 详细介绍
Angualr 作为最近前端大热的一款框架,越来越多国人开始使用并且不断有成功的项目。UEditor作为百度前端团队的一款神器,在国内多个项目也在使用。所以小编抽了个时间把angular和UEditor整合起来作为一款angular的插件。
angular-ueditor 是一款整合了 angular 和 UEditor 的插件。目的是为了更方便的在angular基础上使用UEditor。
http://zqjimlove.github.io/angular-ueditor/
先引入 UEditor 的 javascript 文件
<script type="text/javascript" src="/ueditor/ueditor.config.js"></script> <script type="text/javascript" src="/ueditor/ueditor.all.js"></script>
然后下载最新的 angular-ueditor 并且引入文件
<script type="text/javascript" src="angular-ueditor.js"></script>
此时还需要把 angular-ueditor 引入到模块里
angular.module('app',['ng.ueditor'])
使用 Bower 安装时,angular-ueditor 会自动安装并且引入,但ueditor由于没有加入到 Bower 所以需要手动引入。
bower install angular-ueditor --save
基础用法
由于继承了NgModelController,必须绑定 ngModel
<div class="ueditor" ng-model="content"></div>
自定义编辑器
<div class="ueditor" config="config" ng-model="content"></div> ... <script> $scope.config = { ... } </script>
方法
ready(listener)
注册准备事件,当 editor 初始化完成后会执行回调函数。
参数
参数 | 类型 | 详细 |
---|---|---|
listener | function(editor) | Callback called whenever the editor ready. |
例子
<div class="ueditor" ready="ready" ng-model="content"></div> ... <script type="text/javascript"> $scope.ready = function(editor){ alert(editor.getContent()); } </script>
这算是小编第一次正正经经的发布一个开源的项目,即使项目技术含量不高但实在又难以言表的愉悦。在最初开始学习编程到今天,使用过的开源项目数不胜数一直在学习、膜拜各路大神级的开源人物,这一次总算小小回馈了一下。希望在未来能带给大家更多方便好用的项目。