刷新桌面应用程序

时间:2013-11-07 07:08:05

标签: spring-mvc

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

0 个答案:

没有答案