gpt4 book ai didi

ruby-on-rails - 如何在 Rails 3 中创建原子提要?

转载 作者:行者123 更新时间:2023-12-04 23:09:14 26 4
gpt4 key购买 nike

我正在尝试从我的 Posts 模型设置一个简单的原子提要,但我在 rails 2 和 rails 3 之间遇到了翻译问题。

我试图通过两个步骤来完成这个任务:

添加了 <%= auto_discovery_link_tag(:atom) %>到我的/views/layouts/application.html.erb 文件。

创建了一个/views/posts/index.atom.builder 文件。该文件包含:

atom_feed do |feed|   
feed.title("Daily Deal")
feed.updated(@posts.first.created_at)
@posts.each do |post|
feed.entry(post) do |entry|
entry.title(post.title)
entry.content(post.body, :type => 'html')
entry.author { |author| author.name("Justin Zollars")}
end
end
end

我在浏览器中看到 RSS 链接,但该链接打开时出现错误:
  Too many redirects occurred trying to open
“feed:http://localhost:3000/posts”.
This might occur if you open a page
that is redirected to open another
page which then is redirected to open
the original page.

我哪里错了?

最佳答案

尝试指定提要的路径:

<%= auto_discovery_link_tag(:atom, posts_path(:atom)) %>

关于ruby-on-rails - 如何在 Rails 3 中创建原子提要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4707175/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com