我们正在构建一个基于 Spring MVC 的应用程序,它是来自另一个桌面应用程序的链接。关闭弹出应用程序后,我们需要刷新桌面客户端。
我们正在尝试进行 ajax 调用并刷新它。让我知道你们中是否有人遇到过同样的问题。
$.ajax({
url: '${testInfo.refreshUrl}',
type: 'GET',
data:'custno=' + '${testInfo.customerNumber}' + '&app=CustomerOverview',
async: false,
success: function(response) {},
error: function(XMLHttpRequest, textStatus, errorThrown) {}
});
refreshURL
包含桌面客户端的 localhost url 的值。