1

我正在尝试在我的 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
4

1 回答 1

2

您的数据库中缺少一个表(gem 可能需要)。你确定你已经迁移了你的数据库?

您必须运行可能会生成迁移的脚本,但您还必须:

rake db:migrate

或者bundle exec rake db:migrate如果需要。


确保您已运行生成脚本(来自自述文件):

script/generate ajaxful_rating UserModelName

生成器有一个参数:UserModelName,它是您当前用户模型的名称。这对于链接费率模型和用户模型是必要的。

此生成器还复制必要的图像、样式等。

示例:我假设您已经生成了一个经过身份验证的模型……</p>

script/generate authenticated user sessions
script/generate ajaxful_rating user

因此,此调用将创建一个 Rate 模型并将其链接到您的 User 模型。

自述文件中的这一部分肯定意味着生成了迁移。

于 2012-09-03T01:17:43.540 回答