我想将此变量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>');
});
});
});