所以这实际上是上一个编码问题的延续,可以在这里找到。上一个问题询问后端出了什么问题。然而,现在我在前端代码方面遇到了问题。
我正在尝试创建一个按钮,当单击该按钮时,将关系更新为"收藏夹",如果已经收藏夹,则更新为"不收藏夹"。
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 %>
表单/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'
我终于解决了这个更新关系属性的问题。
首先,我必须确定我收到的错误是什么意思。对于那些对Rails还比较陌生的人来说,"true:TrueClass的未定义方法"to_model"意味着你试图创建一个没有条件的条件语句。
语句:current_user.folded(@user)和current_user.nafvorite(@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
然后,这些控制器操作将循环回到我的用户模型方法:
用户.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
继而触发关系模型成功更新属性:
关系.rb
def favorite
update_attribute(:favorited, true)
end
def unfavorite
update_attribute(:favorited, false)
end