如何定义这个变量?

发布于 2024-11-08 19:35:42 字数 377 浏览 1 评论 0原文

我有这样的代码:

  <% @registered_friends.each do |friend| %>    
      <li><%= render 'profiles/fb_follow_form' %></li>
  <% end %>

它使用以下行在不同的目录中呈现部分内容:

<% if current_user != nil && current_user.following?(friend) %>

但是我的应用程序告诉我 friend 未定义?我如何让自己访问该变量?

I have this code:

  <% @registered_friends.each do |friend| %>    
      <li><%= render 'profiles/fb_follow_form' %></li>
  <% end %>

It renders a partial in a different directory with this line:

<% if current_user != nil && current_user.following?(friend) %>

However my app is telling me that friend is undefined? How do I give myself access to the variable?

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

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

发布评论

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

评论(1

三生池水覆流年 2024-11-15 19:35:42

  • <%= render 'profiles/fb_follow_form' %>
  • 更改

  • <%= render 'profiles/fb_follow_form',:朋友=>朋友 %>
  • 应该这么做

    Changing <li><%= render 'profiles/fb_follow_form' %></li>

    to <li><%= render 'profiles/fb_follow_form', :friend => friend %></li>

    should do it

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