gpt4 book ai didi

java - 我应该如何使用 servlet 和 Ajax?

转载 作者:行者123 更新时间:2023-12-01 17:36:23 25 4
gpt4 key购买 nike

每当我在 servlet 中打印某些内容并由 web 浏览器调用它时,它都会返回一个包含该文本的新页面。有没有办法使用 Ajax 打印当前页面中的文本?
我对 Web 应用程序和 servlet 很陌生。

最佳答案

$.ajax({
type: "POST",
url: "URL to hit on servelet",
data: JSON.stringify(json),
dataType: "json",
success: function(response){
// We have the response
if(response.status == "SUCCESS"){
$('#info').html("Info has been added to the list successfully.<br>" +
"The details are as follws: <br> Name: ");
}
else{
$('#info').html("Sorry, there is some thing wrong with the data provided.");
}
},
error: function(e){
alert('Error: ' + e);
}
});

关于java - 我应该如何使用 servlet 和 Ajax?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61031734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com