" />
我将发布这样的代码片段——解决我在日常工作中遇到的小问题。
这是使用 content_for 帮助器和元元素与前端共享一些结构化数据的最简单方法之一。
# .erb <% content_for :head do %> <meta name="project-prices" content=<%=prices.to_json%> /> <% end %>
// .js const meta = document.querySelector('[name="project-prices"]') JSON.parse(meta.content)
以上是Rails:使用 将数据传递到浏览器的详细内容。更多信息请关注PHP中文网其他相关文章!