我有一个jquery ajax函数,用于更新为比赛设置的评级,并将其发送给控制器以更改数据库var。
但是如何从网址动态获取网站的竞赛ID和基本网址到我的jquery功能?
http://ontwerpwedstrijden.dev/contests/1
这是我正在使用的路线网址。
$(function() {
$(".radio").on("click",function(e) {
// dynamic variables
var base = 'http://ontwerpwedstrijden.dev';
var id = 1; // needs to be changed to the current url id
// Ajax call
$.post(base+'/contests/'+id,{ rating: this.value}, function(data) {
console.log(data);
});
});
});