ActionView :: Template :: Error(用于true的未定义方法“ to_model”:用于更新属性方法的TrueClass

时间:2019-01-20 18:28:32

标签: ruby-on-rails forms actionview update-attributes

因此,这实际上是先前的编码问题的延续,可以在here中找到。前一个问题问后端有什么问题。但是现在我在前端代码方面遇到了问题。

我正在尝试创建一个按钮,当单击该按钮时,会将关系更新为“收藏”,如果已收藏则为“不收藏”。

partials / _favorite.html.erb

<%= form_tag current_user.favorite(@user), remote: true do |f| %>     # partials/_favorite.html.erb:1
    <div>
        <%= hidden_field_tag :followed_id, @user.id %>
    </div>
    <%= button_tag(class: "d-block mx-auto btn btn-warning") do %>
        <%= icon('far', 'star') %>
    <% end %>
<% end %>

forms / _favorite.html.erb

<% unless current_user?(@user) %>
    <div id="follow_form">
        <% if current_user.favorited?(@user) %>
            <%= render 'partials/unfavorite' %>
        <% else %>
            <%= render 'partials/favorite' %>     # forms/_favorite.html.erb:1
        <% end %>
    </div>
<% end %>

_stats.html.erb

<% @user ||= current_user %>

<div class="row">
    <div class="col-4 text-center">
        <%= link_to following_user_path(@user) do %>
            <b>Following</b><br>
            <%= @user.following.count %>
        <% end %>
    </div>
    <div class="col-4 text-center">
        <%= link_to followers_user_path(@user) do %>
            <b>Followers</b><br>
            <%= @user.followers.count %>
        <% end %>
    </div>
    <div class="col-4">
        <%= render 'forms/follow', followed_id: @user.id %>
        <%= render 'forms/favorite', followed_id: @user.id if current_user.following?(@user) %>     # _stats.html.erb:18
    </div>
</div>

我已经在同一个功能接口上工作了大约一个星期,但未能成功实现它。由于上一个问题中的解决方案,最喜欢和最不喜欢的方法都能成功工作。测试套件没有发现错误。

我不明白我收到的错误,这是为什么我无法解决编码问题的重要原因。我将不胜感激。

我遇到的错误是:

ActionView::Template::Error (undefined method `to_model' for true:TrueClass
Did you mean?  to_yaml):
    1: <%= form_tag current_user.favorite(@user), remote: true do |f| %>
    2:  <div>
    3:          <%= hidden_field_tag :followed_id, @user.id %>
    4:  </div>

app/views/partials/_favorite.html.erb:1:in `_app_views_partials__favorite_html_erb__875601414_141134960'
app/views/forms/_favorite.html.erb:6:in `_app_views_forms__favorite_html_erb__719356774_141387060'
app/views/partials/_stats.html.erb:18:in `_app_views_partials__stats_html_erb__832871257_32744880'
app/views/users/show.html.erb:13:in `_app_views_users_show_html_erb__718176203_36043580'

1 个答案:

答案 0 :(得分:0)

我终于解决了这个更新关系属性带来的问题。

首先,我必须确定收到的错误是什么意思。对于那些仍较不熟悉Rails的用户,“为true:TrueClass使用未定义的方法'to_model'”表示您正在尝试创建条件语句而没有条件

以下语句:current_user.favorite(@user)和current_user.unfavorite(@user)返回true,程序不知道如何评估。因此,我不得不更改:

partials / _favorite.html.erb

<%= form_tag current_user.favorite(@user), remote: true do |f| %>
    <div>
        <%= hidden_field_tag :followed_id, @user.id %>
    </div>
    <%= button_tag(class: "d-block mx-auto btn btn-warning") do %>
        <%= icon('far', 'star') %>
    <% end %>
<% end %>

到...

<%= link_to favorite_relationship_path(current_user.active_relationships.find_by(followed_id: @user.id)), method: :put, remote: true do %>
    <%= button_tag(class: "d-inline btn btn-warning") do %>
        <%= icon('far', 'star') %>
    <% end %>
<% end %>

,并且与 partials / _unfavorite.html.erb

类似

这还意味着我需要在关系控制器中引入后续动作

Relationships_controller.rb

  def favorite
    @user = Relationship.find(params[:id]).followed
    current_user.favorite(@user)
    respond_to do |format|
      # Handle a Successful Unfollow
      format.html
      format.js
    end
  end

  def unfavorite
    @user = Relationship.find(params[:id]).followed
    current_user.unfavorite(@user)
    respond_to do |format|
      # Handle a Successful Unfollow
      format.html
      format.js
    end
  end

然后,这些控制器操作将循环回到我的用户模型方法:

User.rb

def favorite(other_user)
    active_relationships.find_by(followed_id: other_user.id).favorite
end

def unfavorite(other_user)
    active_relationships.find_by(followed_id: other_user.id).unfavorite
end

随后将触发关系模型以成功更新属性:

Relationship.rb

def favorite
    update_attribute(:favorited, true)
end

def unfavorite
    update_attribute(:favorited, false)
end