我有一个 Rails 应用程序,它在一个视图的列表中列出了不同的团队。团队是链接并在 URL 中使用,例如localhost:3000/teams/chelsea
显示“chelsea”。
如果我man utd
在单击链接时调用了一个团队,它会转义所有空格,因此 URL 如下所示:
localhost:3000/teams/<script>man%20utd
但我只是希望它成为
localhost:3000/teams/<script>man utd
这是我的代码:
<a href="/<%= team["name"].html_safe %>"><%= team["name"] %></a>
html_safe
我在阅读其他问题后尝试使用,raw
但也没有运气。
解决此问题的最佳方法是什么?