甚至没有发送请求。当用户单击该按钮时,它应该向服务器发送GET请求并返回Json对象。它在我手动输入浏览器中的URL时工作。
$(document).ready(function() {
$("#get-all-btn").click(function() {
$.ajax({
url: "http://localhost:8080/SafiRestaurant/rest-services/reserve/get-all",
data: {}
dataType: "json",
success: function(data, textStatus) {
window.location.href = "owner-dashboard.html";
},
});
});
});