使用脚手架形式嵌入 SoundCloud Link

Using Scaffold Form to Embed SoundCloud Link

我正在尝试在一个应用程序中创建一个表单,其中包含歌曲的标题、艺术家和 soundcloud 嵌入 link,以便可以在 post 中使用它们。

我创建了一个 scaffoldset soundcloudembed:text

我在想要显示内嵌播放器的位置加了一个link<%= post.soundcloudembed %>。这 link 不起作用。

有谁知道解决这个问题的方法吗?

由于您的 soundcloadembed 字段包含 html 标签,您应该告诉 rails 使用以下两种方法之一输出原始数据:

<%== post.soundcloudembed %>

<%= post.soundcloudembed.html_safe %>