是否有可能在ajax帖子中声明多个网址?

时间:2013-01-15 10:20:34

标签: jquery

 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之间使用','?

1 个答案:

答案 0 :(得分:0)

不,开箱即用,您必须进行多次Ajax调用,如果重要的话,可以将它们链接在一起。