我们正在构建一个基于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的值。