如何通过jQuery AJAX发送数据并使用JSP检索?

时间:2015-04-24 11:42:29

标签: javascript jquery ajax jsp

我想将此变量fid发送到我的JSP页面。

$.ajax({
    url: 'http://api.themoviedb.org/3/genre/movie/list?api_key=' + api_key,
    dataType: 'jsonp',
    jsonpCallback: 'testing'
}).error(function() {
    console.log('error')
}).done(function(response) {
    fid = response.genres[Math.floor(Math.random() * response.genres.length)].id;
    $.ajax({
        url: 'http://api.themoviedb.org/3/genre/' + fid + '/movies?api_key=' + api_key,
        dataType: 'jsonp',
        jsonpCallback: 'testing'
    }).error(function() {
        console.log('error')
    }).done(function(response) {
        k = Math.floor(Math.random() * response.results.length);
        $('#search_results').append(
            '<img id="rimg" style="height:300px;width:300px;"src="' +
            images_uri + response.results[k].poster_path +
            '" alt="image not available"></img>'
        );
        $('#d2').append('<h2 id="h2">' + response.results[k].title + '</h2>');
    });
});
});

0 个答案:

没有答案