Is there possible to add multiple url's in ajax post method?
$.ajax({
type: 'POST',
url: root + "projects/partners?json",
data:{key:$(this).val()}
success: refreshMyModel,
dataType: "json"
});
在上面的 js 文件示例中,我想添加多个 url 而不是一个,所以这可以在多个 url 之间使用 ',' 吗?