rails使用Kindeditor网页编辑器

在gemfile中加入(后面版本别丢)

gem 'rails_kindeditor', '~> 0.5.0'

$ bundle  

创建配置文件,并且引入js

rails g rails_kindeditor:install
rails kindeditor:assets

  js获取编辑器的内容

 rails页面中加入以下表单

  <%= form_for @article do |f| %>
<%= f.kindeditor :content, :editor_id => 'my_editor' %>
<% end %>

js

  my_editor.html();

  

  

上一篇:Linux Ubuntu下用Android NDK 生成独立交叉编译链


下一篇:qt-5.6.0 移植之qt源码编译