我如何发送同一文件的多个请求,并使用jquery ajax在php中获取所需的响应

var postID = $post->ID;
$.ajax({
             type: "POST",
             url: "<?php echo get_template_directory_uri();?>/b.php",
             data:{postID:postID},
             dataType: 'json',
             success: function(result){
                if(result!=''){
                    r = $.parseJSON(result);
                    final_rating = get_final_rating(r);
                    set_stars(final_rating);
                }
            }
        });

var arr = [a,b,c,d,e,f];
$.ajax({
                 type: "POST",
                 url: "<?php echo get_template_directory_uri();?>/b.php",
                 data:{star:arr, postID:postID},
                 async :false,
                 cache: false,
                 success: function(result){
                        if(result === '1')
                        {
                            final_rating = result;
                            set_stars(final_rating);
                        }
                    }
                });

You can do something like this with jQuery:

var postID = <?php echo $post->ID; ?>,
    arr = [a,b,c,d,e,f],
    req1, req2;

req1 = $.ajax({
    type: "POST",
    url: "<?php echo get_template_directory_uri();?>/b.php",
    data: {postID:postID},
    dataType: 'json'
});

req2 = $.ajax({
    type: "POST",
    url: "<?php echo get_template_directory_uri();?>/b.php",
    data: {star:arr, postID:postID},
    async: false,
    cache: false
});

$.when(req1, req2).then(function (data1, data2) {

    // data1[0] = result

    if(data1[0] !== '') {
        r = $.parseJSON(result);
        final_rating = get_final_rating(r);
        set_stars(final_rating);
    }

    // data2[0] = result

    if(data2[0] === '1') {
        final_rating = result;
        set_stars(final_rating);
    }

});

var postID = $post->ID; should be replaced by:

var postID = <?php echo $post->ID; ?>;

You're also doing Ajax wrong. You should make all requests on admin-ajax.php - http://codex.wordpress.org/AJAX_in_Plugins

You then use different action parameters to differentiate between different Ajax calls.