Ruby on Rails 链接

发布于 2025-01-06 06:27:41 字数 382 浏览 1 评论 0原文

我有一个带有描述的实例:

instance = Object.new
instance.description = '<a href=www.google.com >Google</a>'

然后在视图中,我使用它显示它

= sanitize(instance.description)

它显示正确的链接,但是当我将鼠标悬停在链接上并查看网址时,它将重定向到 'www.my- web-app.com/www.google.com'(它将我的应用程序的域添加到正确的网址前面),有人知道是什么原因造成的吗?请帮我。

提前致谢

I have an instance with a description:

instance = Object.new
instance.description = '<a href=www.google.com >Google</a>'

Then in the view, I display it using

= sanitize(instance.description)

It displays the link correct but when I hover over the link and I look at the url it will redirect to 'www.my-web-app.com/www.google.com' (it prepends the domain of my app to the correct url), anyone knows what's causing this? please help me.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柏林苍穹下 2025-01-13 06:27:41

您应该将 http:// 添加到 URL:

instance.description = '<a href=http://www.google.com >Google</a>'

You should add http:// to the URL:

instance.description = '<a href=http://www.google.com >Google</a>'
以酷 2025-01-13 06:27:41

您的 href 需要有一个 http:// 所以,

instance.description = "<a href='http://google.com'>Google</a>"

问题出在 HTML 上,它与 Rails 无关。

You href needs to have an http:// so,

instance.description = "<a href='http://google.com'>Google</a>"

The problem is with the HTML, it has nothing to do with rails.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文