在Jquery中将动态id和基本URL发送到laravel路由

时间:2013-04-29 12:35:46

标签: php jquery ajax laravel laravel-3

我有一个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);
    });
  });  
});

1 个答案:

答案 0 :(得分:1)

检查出来:Get current URL in JavaScript?

这样你就可以获得网址,然后从中获取你需要的东西(在这种情况下是id)