我正在构建一个RailsApp,用户可以通过:buisness_type
中的f.select
声明他们的views/profiles/_form.html.erb
。
然后在views/users/show.html.erb
中,current_user
可以在input_field中输入汽车旅行的值。
我希望能够让current_user根据其:buisness_type过滤掉其他用户。因此,current_user可以在同一个views/users/show.html.erb
中的:business_type
其他用户car_trip的平均值中看到。
在views/profiles/_form.html.erb
中,我将此代码保存在Profile.rb
模型中:
<div class="form-group">
<%= f.label :buisness_type %>
<%= f.select(:buisness_type, grouped_options_for_select(Profile::BUISNESS_TYPES),{ :class => 'form-control' })%>
</div>
在views/users/show.html.erb
我渲染这个部分:
<%= form_for @transport, html: {class: 'form-horizontal'} do |f| %>
<div class="control-group">
<%= f.label :Transport_type, class: 'control-label' %><br>
<div class="controls">
<%= f.select(:transport_type, options_for_select(Transport::TRANSPORT_TYPES)) %>
</div>
</div>
<div class="control-group">
<%= f.label :Trip_length_km, class: 'control-label' %><br>
<div class="controls">
<%= f.number_field :transport_km %>
</div>
</div>
<div class="control-group">
<%= f.label :Number_of_trips, class: 'control-label' %><br>
<div class="controls">
<%= f.number_field :transport_num_of_trips %>
</div>
</div>
<div class="control-group">
<%= f.label :Recycled_fuel, class: 'control-label' %><br>
<div class="controls">
<%= f.number_field :transport_km_recycled_fuel %>
</div>
</div>
<div class="control-group">
<div class="controls">
<%= f.submit class: 'btn btn-xs btn-warning' %>
</div>
</div>
<% end %>
<%= link_to 'Back', transports_path %>
</div>
我还在views/users/show.html.erb
中呈现此列图表这是Chartkicks图表。
<div class="col-md-6 chart-box">
<%= column_chart [
{name: "CarTrips #{current_user.profile.name}", data: current_user.transports.group(:transport_type).sum(:transport_km)},
{name: "CarTrips Everyone Median", data: Transport.group(:transport_type).average(:transport_km)}], { stacked: true, height: "300px", xtitle: "CarTrips", ytitle: "Km/CarTrips"} %>
</div>
正如您所看到的,我能够显示每个用户的平均汽车旅行,无论他们在哪种业务。我怎样才能让Current_user只看到其他用户的平均汽车旅行他们在的业务类型???这是否可能。
users_controller.rb
我在show
方法
def show
@user = User.find(params[:id])
@users = User.order('created_at DESC').paginate(page: params[:page], per_page: 30)
@transport = current_user.transports.build
end
user.rb
ADDED Models
这是class User < ActiveRecord::Base
has_one :profile
accepts_nested_attributes_for :profile
def average_transport_types
self.transports.group(:transport_type).sum(:transport_km)
end
end
模型
profile.rb
这是class Profile < ActiveRecord::Base
belongs_to :user
end
模型
Type ceptype = new TypeToken<List<ConsultaWSCep>>() {}.getType();
List<ConsultaWSCep> list = g.fromJson(WSChamada, ceptype);
答案 0 :(得分:0)
只需在拉出用户的部分添加where
,例如:
@users = User.where(:business_type => current_user.business_type).order('created_at DESC').paginate(page: params[:page], per_page: 30)