Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 rails 4.2 做一个博客,我希望用户能够在他们的帖子中嵌入图像和视频。有什么好办法。我尝试使用 youtube_it gem,但没有用。
然后在您的 Post.rb - 模型中
auto_html_for :content do image youtube(width: 400, height: 250, autoplay: true) link target: '_blank', rel: 'nofollow' simple_format end end
这应该让你继续前进。