在以下代码中,我想使用 ajax post 方法将 id 作为参数传递给多个 url
$.ajax({
type: 'POST',
url: root + "contacts/primary?json",
data: { id: $(this).val() },
success: function (o) {
ko.applyBindings(new DynamicModel(o.primary),document.getElementById("contactPrimaryForm"));
},
dataType: "json"
});
那么,如何做到这一点..?