ruby 中的 Href 链接

发布于 2024-11-18 21:49:16 字数 445 浏览 4 评论 0原文

这非常简单。

我想在 html 中创建一个 href 链接,指向由 ruby​​ 变量确定的站点 url。 所以这就是我所拥有的:

<% @jobs.each do |job| %>
<% @tempJobUrl = job.url%>
<a href=<%=job.url%></a><%= job.url %>

job 是一个具有 url 变量的对象。该网址是非常标准的格式 http://www.google.com,这就是表格中显示的内容。但是,当我按下链接时,它会将我带到

%3C/a

最后的页面。

有什么想法这是从哪里来的吗?

This is pretty straightforward.

I want to make a href link in html point to a site urls thats determined by a ruby variable.
So heres what I have:

<% @jobs.each do |job| %>
<% @tempJobUrl = job.url%>
<a href=<%=job.url%></a><%= job.url %>

job is an object which has the variable of url. The url is pretty standard format http://www.google.com and thats what shows up in the table. However when I press the link, it takes me to the page with

%3C/a

on the end.

Any ideas where this is coming from?

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

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

发布评论

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

评论(5

叹沉浮 2024-11-25 21:49:16

您确实应该使用 link_to Rails 帮助程序

You should really use link_to Rails helper for this

夏末染殇 2024-11-25 21:49:16

为什么不使用辅助方法呢?

<% @jobs.each do |job| %>
  <%= link_to job.url, job.url %>
<% end %>

Why don't you use the helper method?

<% @jobs.each do |job| %>
  <%= link_to job.url, job.url %>
<% end %>
柏拉图鍀咏恒 2024-11-25 21:49:16

就像@Felix所说,使用 link_to 帮助器

<% @somevar = job.url %>
<%= link_to "Anchor text", @somevar %>

Like @Felix said, use the link_to helper

<% @somevar = job.url %>
<%= link_to "Anchor text", @somevar %>
ˇ宁静的妩媚 2024-11-25 21:49:16

我认为最简单的解决方案是按以下方式使用帮助器方法 link_to:

<% @jobs.each do |job| %>
  <%= link_to job.url, job.url %>
<% end %>

link_to 帮助器非常适合形成超链接。您需要提供的只是 URL 和锚文本。请参阅 Ruby on Rails link_to 文档

I think the simplest solution would be to use the helper method link_to in the following way:

<% @jobs.each do |job| %>
  <%= link_to job.url, job.url %>
<% end %>

The link_to helper is great for forming hyperlinks. All you need to supply is the URL and the anchor text. See the Ruby on Rails documentation for link_to

ら栖息 2024-11-25 21:49:16
<%= link_to "#{@data[:item_name]}", @data[:link] %>

如果您需要一个超链接,其中需要项目名称和链接,您可以执行与此类似的操作。

<%= link_to "Task", Task_Link %>
<%= link_to "#{@data[:item_name]}", @data[:link] %>

If you need a hyperlink where you need the name of item along with link, you can do something similar to this.

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