Grunt编译UEditor

0

最近把公司网站的编辑器换了一下,原来的有点渣,换用百度的UEditor,但是发现百度官网的下载包有BUG(预览图片的时候路径是本地路径)。
我还在想这么严重的问题百度居然不修复,原来百度早已经把源代码放到了github上面去了。

下载源代码发现根本不是那么回事情,不得不说现在的前端也是折腾的厉害啊,什么自动化测试、编译,还要学习(http://www.gruntjs.net/)。

  • 首先从github上面下载代码下来
  • 然后安装node.js
  • 然后安装grunt插件
  • 最后编译就OK了

具体命令:

node --version
npm install -g grunt-cli
npm install grunt --save-dev
npm install
grunt

参考文章:http://www.cnblogs.com/linjiqin/p/3754771.html

结果如下图:

Grunt编译UEditor
Grunt编译UEditor
Grunt编译UEditor
Grunt编译UEditor

编译出来的是PHP的,如果其他版本,修改Gruntfile.js即可:

Grunt编译UEditor