在线等!高分求助!action跳转问题!
一个添加页面,操作成功,action跳转时弹出对话框!可是总是不行!麻烦各位看一下!add.javapublicStringtoCreateTemplate()throw...
一个添加页面,操作成功,action跳转时弹出对话框!可是总是不行!麻烦各位看一下!
add.java
public String toCreateTemplate() throws IOException {
try {
templateService.addTemplate(templateEntity);
response.setContentType("text/html;charset=gbk");
response.setCharacterEncoding("gbk");// 防止弹出的信息出现乱码
PrintWriter out = response.getWriter();
out.print("<script>alert('添加成功!')</script>");
out.print("<script>window.location.href='templateindb.do'</script>");
out.flush();
out.close();
return null;
} catch (Exception IOException) {
return "faile";
}
}
jsp页from的action=tocreatetemplate
struts.xml
<action name="tocreatetemplate" class="templateAction" method="toCreateTemplate">
<result name="faile">faile.jsp</result>
</action> 展开
add.java
public String toCreateTemplate() throws IOException {
try {
templateService.addTemplate(templateEntity);
response.setContentType("text/html;charset=gbk");
response.setCharacterEncoding("gbk");// 防止弹出的信息出现乱码
PrintWriter out = response.getWriter();
out.print("<script>alert('添加成功!')</script>");
out.print("<script>window.location.href='templateindb.do'</script>");
out.flush();
out.close();
return null;
} catch (Exception IOException) {
return "faile";
}
}
jsp页from的action=tocreatetemplate
struts.xml
<action name="tocreatetemplate" class="templateAction" method="toCreateTemplate">
<result name="faile">faile.jsp</result>
</action> 展开
9个回答
展开全部
因为你用out方法截断了,所以不会执行struts.xml配置中的页面
ajax更适合你,struts2 + json完美搞定!~
去我空间下个例子看看吧!~
框架①
精简后的jar文件
框架版本:
struts2.2.3.1
spring3.1.0(测试版)
hibernate4.0(测试版)
框架②
实现ssh结合的登录效果,数据库通过hibernate反转生成。jar包没有优化,包含全部jar包!
框架版本:
struts2.0.11.1
spring2.5
hibernate3
去下个我整合好的包吧,去这个地址上去找
http://zhidao.baidu.com/question/340527214.html
ajax更适合你,struts2 + json完美搞定!~
去我空间下个例子看看吧!~
框架①
精简后的jar文件
框架版本:
struts2.2.3.1
spring3.1.0(测试版)
hibernate4.0(测试版)
框架②
实现ssh结合的登录效果,数据库通过hibernate反转生成。jar包没有优化,包含全部jar包!
框架版本:
struts2.0.11.1
spring2.5
hibernate3
去下个我整合好的包吧,去这个地址上去找
http://zhidao.baidu.com/question/340527214.html
展开全部
首先 你访问这个action action完成动作之后不会有跳转 只会有数据的传递
因为你return null 所以推测你在前台是用ajax来交互数据 那么为什么没有出现弹出的对话框, 应该把前台代码贴出来
其次,如果你的前台是普通的jsp没有js 或 ajax的话,想要实现弹出对话框
只能由你跳转到的页面来弹出对话框,并且传递的数据也并非用out.print
因为你return null 所以推测你在前台是用ajax来交互数据 那么为什么没有出现弹出的对话框, 应该把前台代码贴出来
其次,如果你的前台是普通的jsp没有js 或 ajax的话,想要实现弹出对话框
只能由你跳转到的页面来弹出对话框,并且传递的数据也并非用out.print
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我的也是这样 多刷新几次就出来了 你所说的登录界面是CMCC的认证界面吗? CMCC连不上你肯定不能弹出登录界面,我感觉你是不是吧登录界面收藏了?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这是返回一个字符串!
这么写
return mapping.findForward("faile");
这么写
return mapping.findForward("faile");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
try 方法里 retrun 的是一个 null
您的struts.xml里面 就没有 等于null的时候
也就是说 无论如何 struts,xml也接受不了你的参数
您可以在struts.xml中加一条<result name="null" >XX.jsp</result>
您的struts.xml里面 就没有 等于null的时候
也就是说 无论如何 struts,xml也接受不了你的参数
您可以在struts.xml中加一条<result name="null" >XX.jsp</result>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不管成功还是失败您这个都返回的是faile.jsp页面啊
action 在弄一个return ="success";
哥们 再加一个成功的<result name="success">success.jsp</result>
action 在弄一个return ="success";
哥们 再加一个成功的<result name="success">success.jsp</result>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询