如何在rails 4中使用auto_html gem?

时间:2015-02-19 17:52:21

标签: ruby-on-rails-4.2

我正在尝试使用rails 4.2进行博客,我希望用户能够在他们的帖子中嵌入图片和视频。这是一个很好的方法。我尝试使用youtube_it gem,但它没有用。

1 个答案:

答案 0 :(得分:0)

  1. 安装gem:gem'auto_html','〜> 1.6.4'
  2. 捆绑安装
  3. 然后在你的Post.rb模型中

    auto_html_for :content do
        image
        youtube(width: 400, height: 250, autoplay: true)
        link target: '_blank', rel: 'nofollow'
        simple_format
      end
    end
    

    这应该让你去。