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之间使用','?
答案 0 :(得分:0)
不,开箱即用,您必须进行多次Ajax调用,如果重要的话,可以将它们链接在一起。