window.open传参数问题
functionpoppage(type){window.open("pop“);}页面1中的JS通过window.open跳到后台controller中的pop@Req...
function poppage(type){
window.open("pop“);
}
页面1中的JS通过window.open跳到后台controller中的pop
@RequestMapping(value = "/pop")
public ModelAndView pop(String type) {
System.out.println("type="+type);
return super.returnModel("event/popJsp") ;
}
再到页面popJsp,
那怎么传参数从页面1到popJsp呢?
两个都不能用?参数=参数值的方法啊 展开
window.open("pop“);
}
页面1中的JS通过window.open跳到后台controller中的pop
@RequestMapping(value = "/pop")
public ModelAndView pop(String type) {
System.out.println("type="+type);
return super.returnModel("event/popJsp") ;
}
再到页面popJsp,
那怎么传参数从页面1到popJsp呢?
两个都不能用?参数=参数值的方法啊 展开
2个回答
展开全部
window.open("pop?type="+type);
public ModelAndView pop(@PathVariable("type") String type) {
request.setAttribute("type",type);
在jsp里面取值。request.getParameter("type");
sesson也可以,看你适用范围
public ModelAndView pop(@PathVariable("type") String type) {
request.setAttribute("type",type);
在jsp里面取值。request.getParameter("type");
sesson也可以,看你适用范围
更多追问追答
追问
window.open("pop?type="+type);
报错啊The request sent by the client was syntactically incorrect ()
追答
是js报错还是java代码报错
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询