我是 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 选项。