@advertisements.each do |ad|
= form_for ad, url: update_display_path(id: ad.id), remote: true do |f|
= f.label :display, "on/off"
= f.radio_button :display, true, { checked: ad.display }
的なフォームを作って
= form_for ad, url: update_display_path(id: ad.id), remote: true do |f|
= f.label :display, "on/off"
= f.radio_button :display, true, { checked: ad.display }
$(function(){
$('#advertisement_display_true').click(function(){
var val = $(this).val();
var target = $(this.form).attr("action");
$.ajax({
type: "PUT",
url: target,
data: val,
success: function(){
alert("OK")
}
});
});
});
とすればOK$('#advertisement_display_true').click(function(){
var val = $(this).val();
var target = $(this.form).attr("action");
$.ajax({
type: "PUT",
url: target,
data: val,
success: function(){
alert("OK")
}
});
});
});
流れは・・・
radio_buttonをクリックしたら、
↓
そのvalueと
↓
そのフォームのアクションを取ってきて
↓
ajax内のtypeをput,
↓
urlをアクション、
↓
送るdataをvalueで、
↓
成功時にOKっというメッセージを出す
という流れです。
Ajaxは利用者ががんがんスムーズに作れるので嬉しいですよね〜
0 件のコメント:
コメントを投稿