fix: 第三方iframe嵌入公共链接

This commit is contained in:
fit2cloud-chenyw 2021-12-06 11:04:55 +08:00
parent 3bc9e0561a
commit 0b1f5fe3b4

View File

@ -11,6 +11,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.servlet.http.Cookie; import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@Controller @Controller
@RequestMapping @RequestMapping
@ -45,13 +46,14 @@ public class IndexController {
} }
@GetMapping("/link/{index}") @GetMapping("/link/{index}")
public String link(@PathVariable(value = "index", required = true) Long index) { public void link(@PathVariable(value = "index", required = true) Long index) {
String url = panelLinkService.getUrlByIndex(index); String url = panelLinkService.getUrlByIndex(index);
HttpServletResponse response = ServletUtils.response(); HttpServletResponse response = ServletUtils.response();
String param = url.substring(url.indexOf("?") + 1); try {
Cookie cookie = new Cookie("link", param.split("=")[1]); response.sendRedirect(url);
response.addCookie(cookie); } catch (IOException e) {
return url; e.printStackTrace();
}
} }