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

4

1 回答 1

0

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

于 2013-01-15T10:30:01.837 回答