1

我正在尝试使用 rails 4.2 做一个博客,我希望用户能够在他们的帖子中嵌入图像和视频。有什么好办法。我尝试使用 youtube_it gem,但没有用。

4

1 回答 1

0
  1. 安装 gem: gem 'auto_html', '~>1.6.4'
  2. 捆绑安装

然后在您的 Post.rb - 模型中

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

这应该让你继续前进。

于 2017-03-23T20:06:14.953 回答