如何将参数从URL传递到ajax请求?快递网络应用

时间:2019-06-10 07:23:39

标签: node.js ajax express parameters get

我想从URL中提取参数(导航到该URL之后)以用于AJAX get请求中。 AJAX请求将使用客户端功能中的参数来获取特定于用户配置文件的数据。

URL示例:www.website.com/user-profile/12345

Ajax请求:

var theParams = // here I don't know how to access the params 12345 from above URL
var getDataWithParams = function() {
    $.ajax({
        url: '/getData/:' + theParams,
        success: function (data) {
            // process data 
        }


    });
};

getDataWithParams();

1 个答案:

答案 0 :(得分:0)

解决方案

ValueError