打印整个演出路径

发布于 2024-12-12 00:09:37 字数 635 浏览 0 评论 0原文

我正在 Rails 中构建提要,我希望在内容部分中返回我的项目的整个显示路径。我当前的代码仅打印没有根的路径。

entry.content link_path(link) 返回类似 links/44 的内容,但我想返回 http://www.example.com/links/44。使用托管应用程序的根目录。感谢您的任何帮助。

atom_feed do |feed|
  feed.title "Wrld"
  feed.updated @links.first.created_at

  @links.each do |link|
    feed.entry link do |entry|
      entry.title link.title
      entry.content link_path(link), :type => 'html'

      entry.author do |author|
        author.name "Wrld"
      end
    end
  end
end

更新

谢谢 Leonid,link_url(link) 做到了

I'm constructing a feed in rails and I would like the entire show path for my items to be returned in the content portion. My current code only prints the path without the root.

entry.content link_path(link) returns something like links/44 but I would like to return http://www.example.com/links/44. Using the root of wherever the app is being hosted. Thanks for any help.

atom_feed do |feed|
  feed.title "Wrld"
  feed.updated @links.first.created_at

  @links.each do |link|
    feed.entry link do |entry|
      entry.title link.title
      entry.content link_path(link), :type => 'html'

      entry.author do |author|
        author.name "Wrld"
      end
    end
  end
end

UPDATE

Thanks Leonid, link_url(link) did it

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

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

发布评论

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

评论(1

在风中等你 2024-12-19 00:09:37

link_url 就是您要查找的内容。一般来说,任何带有 _path 的路由助手都会返回路径部分,而 _url 助手会返回整个 URL。

link_url is what you're looking for. In general any route helper with _path returns the path part and the _url helper returns the entire URL.

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