如何在 html.erb 文件中写入 <noscript> 标签

How to write <noscript> tag in html.erb file

我有一个 app.html.erb,我需要在其中添加 noscript 标签。就像添加脚本标签一样,我们会做类似

的事情
<%= javascript_tag do %>

<% end %>

我不知道如何在 html.erb 中编写 noscript 标签。请帮助我。

<noscript> 
 <iframe src="googletagmanager.com/ns.html?id=#{key}" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>

我认为这应该可行:

<noscript> 
  <iframe src="googletagmanager.com/ns.html?id=<%= key %>" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>

ERb 会将 <%= %> 中的内容解释为 ruby,因此这假设有一个变量 key 被传递到 erb。