Member 12974741 Ответов: 0

Вызов URL-адреса сервлета в JSP с помощью AJAX


Appreciate if someone could assist me on this.... i have a servlet coded already (Its a http url). I would need to access the servlet in JSP to get the data using ajax.

can someone tel me how to obtain this?

url link below is given for sample.... $.ajax({ type: 'GET', data : { }, url: 'http://testurl/testconnection.jsp?action=getsearchresults',
success: function(data) { console.log(data);
});




Я новичок в Ajax, не знаю, как передать свой сервлет в Ajax и получить данные в jsp.

Любая помощь экспертов будет высоко оценена. Спасибо

Что я уже пробовал:

$.ajax({ type: 'GET', data : { }, url: 'http://testurl/testconnection.jsp?action=getsearchresults',
success: function(data) { console.log(data);
});

0 Ответов