标签:func variable string 跳转 UNC window cti web 页面
//跳转去另一页面
function goToOtherWeb(mn){
var url = prefix + "/otherweb/" + mn+ "";
window.location.href = url;
}
//springboot后台获取
@GetMapping("/otherweb/{mn}")
public String otherweb(@PathVariable("mn") String mn, ModelMap mmap) {
//处理
}
标签:func variable string 跳转 UNC window cti web 页面
原文地址:https://www.cnblogs.com/webttt/p/11412360.html