我正在尝试在我的 rails 应用程序中实现星级评分系统。为此,我选择使用ajaxful-rating gem。
- 我已经安装了宝石
- 我已经运行了脚本
- 我已将 ajaxful_rateable 添加到我的齿轮模型中以启用对它们的评级。
- 我已将 ajaxful_rater 添加到我的用户模型中以启用对其他项目的评分。
我没有完全完成安装,因为我遇到了路线错误。我需要知道我在路线或数据库上做错了什么。从 gem 上的说明来看,除了缓存平均评分之外,我似乎不需要扩充数据库。但是当我尝试访问视图时出现以下错误
Mysql2::Error: Table 'equiptme.rates' doesn't exist: SHOW FULL FIELDS FROM `rates`
请帮忙。我的代码如下。
路线
resources :gears, :member => {:rate => :post} do
resources :calendars, :only => [:create, :destroy, :edit]
resources :comments, :only => [:create, :destroy]
end
看法
<% @comments.each do |comment| %>
<div style="width: 99%; min-height: 190px; margin-bottom: 30px; border-bottom: 1px dotted #DAD9D9;">
<div style="width: 17%; float: left; overflow: hidden; margin-left: 10px; text-align: center; font-size: 14px; ">
<div class="gearcomments_userpic_container"><%= image_tag comment.user.userimage.url(:comments), :class => "gearcomments_userpic" %></div></br>
<%= comment.user.name %>
</div>
<div style="width: 55%; float: left; margin-left: 10px; font-size: 13px;">
<%= comment.body %>
</div>
<div style="width: 15%; float: left; text-align: center;">
<h4>Overall Rating</h4></br>
<%= ratings_for @gear, :show_user_rating => true %>
<div></div></br>
<% # display delete link only for comments written by this particular user %>
<% if user_signed_in? and comment.user_id == current_user.id %>
<span><%= link_to 'delete', gear_comment_path(@gear, comment), :confirm => 'Are you sure?', :method => :delete, :class => "" %></span>
<% end %>
</div>
</div>
<% end %>
齿轮型号
class Gear < ActiveRecord::Base
...
ajaxful_rateable :stars => 6, :allow_update => true
end
用户模型
class User < ActiveRecord::Base
...
ajaxful_rater
end