Jqueryは初めてです。パラメータをJquery関数に渡すときに問題が発生します。私のアプリケーションにはネストされたリソースがあります。
class Post < ActiveRecord::Base
has_many :votes
そしてルートは
sort_votes_post POST /posts/:id/sort_votes(.:format) posts#sort_votes
ソート可能な関数は
$(function() {
$("#sortable").sortable({
update: function() {
$.ajax({
type: 'post',
data: $('#sortable').sortable('serialize'),
url: '/posts/[not sure how to pass :id here]/sort_votes'})
}
});
$("#sortable").disableSelection();
});
:idをurlオプションに渡す方法がわかりません。