我正在尝试使用rails 4.2进行博客,我希望用户能够在他们的帖子中嵌入图片和视频。这是一个很好的方法。我尝试使用youtube_it gem,但它没有用。
答案 0 :(得分:0)
然后在你的Post.rb模型中
auto_html_for :content do
image
youtube(width: 400, height: 250, autoplay: true)
link target: '_blank', rel: 'nofollow'
simple_format
end
end
这应该让你去。