.click 関数でデータベースにクエリを実行しようとしています。alert(val) できるので、うまくいきます。しかし、データベースにアクセスしてDiscountテーブルにDiscount.amount == valのレコードが存在するかどうかを調べる方法を見つけようとしています
$(document).ready ->
$("button.discount").click ->
val = $('input.discount').val()
store = window.location.pathname.split('/')[1]
// Would like to do something like this, I'm guessing with ajax:
d = Discount.find_by_name(val)
if d
return d.amount
else
return "No discount exists"
end