在Angularjs中使用Acts_as_votable gem

时间:2016-08-17 13:26:42

标签: javascript ruby-on-rails angularjs json acts-as-votable

基本上我想通过Angular模板访问Acts_as_Votable。我有一份人们可以投票的汽车清单。但是,当在Angular中呈现列表时,我无法显示投票。

我猜测我需要传递某种关联:当json在控制器中呈现时的投票,例如:marque。这是我到目前为止所处的地方。不能为我的生活解决问题,而是采取实际问题的方式!

干杯

cars_controller.rb

def index
  @cars = Car.all
  respond_to do |format|
    format.html {}
    format.json {render json: @cars, :include => :marque}
  end
end

index.html.erb

<div ng-repeat="car in cars | rangeFilter:slide | filter:name">
  <div class="col-sm-6 col-md-4">
     <ul class="thumbnail">
        <li>{{car.marque.name}}</li>
        <li>{{car.name}}</li>
        <li>{{car.power}}</li>
        <li>{{car.rotor}}</li>
        <li>Votes: {{car.votes_for.size}} </li>
        <li><%= link_to 'Show', URI::unescape(turbine_path('{{car.id}}'))%></li>
        <li><%= link_to "up", URI::unescape(like_turbine_path('{{car.id}}')), method: :put, class: "btn btn-default btn-sm" %></li>
      </ul>
    </div>
 </div>

1 个答案:

答案 0 :(得分:0)

我一发布这个问题,我就找到了答案。典型。

您可以使用json

添加votes_for
def index
  @cars = Car.all
  respond_to do |format|
    format.html {}
    format.json {render json: @cars, :include => [:marque, :votes_for] }
  end
end  

并在Angular中计算出来

<li>Votes: {{car.votes_for.length}} </li>