ruby on rails-将值从视图传递给助手



我有以下表格:

projects
users
projects_users <- relational table

在视图中,我循环浏览所有项目,并根据用户与它的关系(所有者、成员,而不是成员),将它们呈现为一个和一个具有不同类(以及链接或未链接)的项目。

除了第3行的if语句外,这一操作效果很好,在该语句中,我检查用户是否为成员check_if_member"将在项目帮助程序中找到(请参见下文)。发生的情况是,我得到以下错误消息:

Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id

这意味着"@project.id"或"current_user.id"为零。在这种情况下,我很确定是@project.id,这是零,而且它实际上没有传递给助手。

如果我是对的,我该如何将它传递给助手?如果我说得不对,问题出在哪里?

视图:

1.  <% @projects.each do |project| %>
2.      <div class="project_container">
3.          <% if check_if_member %>
4.              <% if project.user_id == current_user.id %>
5.                  <div class="users_project label label-success">
6.                      Owner
7.                  </div>
8.              <% else %>
9.                  <div class="not_users_project label label-info">
10.                     Member
11.                 </div>
12.             <% end %>
13.             <div class="project_name_div">
14.                 <%= link_to (project.title), project_path(project) %><br />
15.             </div>
16.         <% else %>
17.             <div class="project_name_div">
18.                 project.title <br />
19.             </div>
20.         <% end %>
21.     </div>
22. <% end %>

助手:

module ProjectsHelper
    def check_if_member
        if ProjectsUser.where("project_id = ? AND user_id = ?", @project.id, current_user.id)
            return true
        else
            return false
        end
    end
end

显式通过

def check_if_member project, user
    ProjectsUser.where("project_id = ? AND user_id = ?", project.id, user.id).count > 0
end

然后

<% if check_if_member(project, current_user) %>

相关内容

  • 没有找到相关文章

最新更新