菜单部分生成代码属于哪里

发布于 2024-10-31 13:28:37 字数 326 浏览 0 评论 0原文

在我的 application.html.erb 布局中,我正在渲染包含以下代码的部分共享/_menu.html.erb

<nav>
  <ul>
    <% Post.all.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

从我的角度来看,我对模型进行调用的事实在尊重 MVC 的意义上似乎相当有问题。有人对我应该如何解决这个问题有建议吗?

In my application.html.erb layout i'm rendering the partial shared/_menu.html.erb that contains the following code

<nav>
  <ul>
    <% Post.all.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

The fact that I make a call on the Model from my view seems rather problematic in the sense of respecting MVC to me. Does anyone have a suggestion as to how I should solve this issue?

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

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

发布评论

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

评论(1

风追烟花雨 2024-11-07 13:28:37

before_filter 添加到您的 ApplicationController:

before_filter :define_posts

def define_posts
  @posts = Post.all
end

然后您的菜单应该如下所示:

<nav>
  <ul>
    <% @posts.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

另一种方法是在您的 ApplicationController 中创建辅助方法:

helper_mathod :posts

def posts
  @posts ||= Post.all
end

这样您就可以直接从菜单中调用它:

<nav>
  <ul>
    <% posts.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

第二种方法看起来更干净。

现在的一种解决方案是使用 Decent Exposure gem

http://railscasts.com/episodes/259-decent-exposure< /p>

add before_filter to your ApplicationController:

before_filter :define_posts

def define_posts
  @posts = Post.all
end

Then your menu should look like that:

<nav>
  <ul>
    <% @posts.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

Another approach is to create helper method in your ApplicationController:

helper_mathod :posts

def posts
  @posts ||= Post.all
end

So you can call it directly form your menu:

<nav>
  <ul>
    <% posts.each do |post| %>
      <%= link_to post.title, post.permalink %>
    <% end %>
  </ul>
</nav>

Second approach looks little cleaner.

And one nowadays solution is to use Decent Exposure gem:

http://railscasts.com/episodes/259-decent-exposure

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