我有一个html页面(http://www.somedomain.com/index.html),其内容类似于
Color color = new Color(1f,1f,1f,0.9f);
DirectionalLight directionalLight = new DirectionalLight(rayHandler,200,color,-90f);
directionalLight.setSoftnessLength(0);
如您所见,此页面的脚本标签中包含一个JSP(proxy.jsp)。
现在在我的JSP(proxy.jsp)中,我想知道脚本标记中包含此JSP的页面的URL,本例中为http://www.somedomain.com/index.html
可能吗?
答案 0 :(得分:0)
我使用了request.getHeader(“ referer”);在proxy.jsp中,它给了我URL http://www.somedomain.com/index.html。