我对RoR相当陌生,目前正在为业余体育俱乐部经理开发一个小的免费应用程序,帮助他们跟踪付款情况。这个应用程序显示相关的球员数据和一个表格来收取费用(关税)支付。我想在付款之前显示正在支付的概念的费用。这是带有表单和生成的HTML的应用视图:
这是pagos_controller。Rb 'new' action:
def new
@pago = Pago.new
@conceptos = Concepto.all
@jugador = Jugador.find_by(id: params[:jugador_id])
end
,这是views/pagos/_form.html。Erb呈现到views/pagos/new.html中。erb:
<%= form_for(@pago) do |f| %>
<% if @pago.errors.any? %>
<p> All the error showing logic is omitted here for simplicity </p>
<div class="field-tm">
<%= f.label :concepto %>
<%= f.collection_select :concepto, @conceptos, :name, :name %>
</div>
<div class="field-tm">
<%= f.label :tarifa %> <div id="la-tarifa"> </div>
</div>
<div class="field-tm">
<%= f.text_field :cantidad, :placeholder => "Cantidad a pagar" %>
</div>
<%= f.hidden_field :jugador_id, :value => params[:jugador_id] %>
<div class="actions">
<%= f.submit "Registrar Pago", class: "btn btn-default"%>
</div>
<% end %>
这是pagos模式…
create_table "pagos", force: :cascade do |t|
t.string "concepto"
t.decimal "cantidad"
t.integer "jugador_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
和Conceptos模式:
create_table "conceptos", force: :cascade do |t|
t.string "name"
t.decimal "tarifa"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
我需要获得在'collection_select'中选择的值,以便使用它来查找该概念的关税,如
@conceptos.find_by(name: theConceptoName).tarifa
放到
$("#la-tarifa").text(tarifa)
显示值,但不知道如何从
获得一个'theConceptoName'变量<%= f.collection_select :concepto, @conceptos, :name, :name %>
我尝试了几种方法,我想出了jQuery的方法来获取值,所以它会是这样的:
$("#pago_concepto").change( function(){
var miConcepto = $("#pago_concepto").value();
do the @conceptos search for miConcepto and get the tarifa;(*)
$("#la-tarifa").text(tarifa);
});
但是我如何在pagos中执行查询(*)呢?从@conceptos获取关税值的代码…我在谷歌上做了很多研究,但我找到的每一个答案都让我更困惑。
试试这个,只是一个简单的ajax查找:
JS:
$("#pago_concepto").change( function(){
var miConcepto = $("#pago_concepto").value();
$.getJSON('/tarifa/' + miConcepto, function(data) {
$("#la-tarifa").text(data.tarifa);
});
});
pagos_controller:
def tarifa
tarifa = Concepto.find_by(name: params[:concept_name]).tarifa
respond_to do |format|
format.json { render json: {tarifa: tarifa} }
end
end
routes.rb:
get '/tarifa/:concept_name', to: 'pagos#tarifa'
如果你想的话,将js转换为coffeescript应该是相对容易的。