Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/spring-mvc/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Spring mvc 刷新桌面应用程序_Spring Mvc - Fatal编程技术网

Spring mvc 刷新桌面应用程序

Spring mvc 刷新桌面应用程序,spring-mvc,Spring Mvc,我们正在构建一个基于SpringMVC的应用程序,它是另一个桌面应用程序的链接。关闭弹出应用程序后,我们需要刷新桌面客户端 我们正在尝试进行ajax调用并刷新它。如果你们中有人遇到同样的问题,请告诉我 $.ajax({ url: '${testInfo.refreshUrl}', type: 'GET', data:'custno=' + '${testInfo.customerNumber}' + '&app=CustomerOverview', asy

我们正在构建一个基于SpringMVC的应用程序,它是另一个桌面应用程序的链接。关闭弹出应用程序后,我们需要刷新桌面客户端

我们正在尝试进行ajax调用并刷新它。如果你们中有人遇到同样的问题,请告诉我

$.ajax({
    url: '${testInfo.refreshUrl}',
    type: 'GET',
    data:'custno=' + '${testInfo.customerNumber}' + '&app=CustomerOverview',
    async: false,
    success: function(response) {},
    error: function(XMLHttpRequest, textStatus, errorThrown) {}
});

refreshURL
包含桌面客户端的本地主机url的值。

到底是什么问题?实际上请求没有击中桌面客户端