如何将JSON数组从HTML页面传递给JSP

时间:2017-06-14 05:47:00

标签: javascript java json jsp

目前我正在使用Instagram API和查询位置。 JSON数组为我提供了20个具有经度,纬度和位置名称的对象。

我目前有一个拥有MapBox的JSP。我希望将所有20个对象放在MapBox中作为标记。 我现在遇到的麻烦是如何将我的JSON数组传递给我的JSP,以便我的JSP可以使用它。

的index.html

$.ajax({
url: 'https://api.instagram.com/v1/locations/search?lat=48.858844&lng=2.294351&access_token=' + token,
dataType: 'jsonp',
type: 'GET',
success: function(data) {
//Pass object and load JSP Page
},
error: function(data){
console.log(data); // send the error notifications to console
}

location.jsp

我希望得到以下内容。但我不知道如何从JSP

访问JSON数组
foreach(var data in jsonArray)
{
    var marker = L.marker([data.Longitude, data.Latitude]).addTo(map);
}

0 个答案:

没有答案