使用弹出层完成文章的详情查看: 1、给标签绑定一个class和自定义的属性article_id 设置class的目的:给这一类的元素方便绑定事件 自定义属性article_id:待会是为了获取当前元素的id 引入核心js文件: 2、给class=showContent绑定一个单击的事件 3、php根 ...
分类:
其他好文 时间:
2017-08-27 10:04:41
阅读次数:
103
扎心了,老铁~这依然是一个注册。 1、reg.jsp 2、UserManagerAction.java 3、struts.xml 4、web.xml ...
分类:
Web程序 时间:
2017-08-26 18:21:18
阅读次数:
227
今天在Struts2框架下使用JSON插件时,程序保存找不到类org/apache/commons/lang/xwork/StringUtils,我纳闷了,commons-lang-2.5.jar和commons-lang3-3.1.jar都导入了,却又发现commons-lang包中根本没有xwo ...
分类:
其他好文 时间:
2017-05-31 20:54:03
阅读次数:
187
struts2中怎样处理异步提交(ajax) 1.原始: HttpServletResponse response = ServletActionContext.getResponse(); response.getWriter().write("hello " + msg); response.g ...
分类:
Web程序 时间:
2017-03-06 17:48:58
阅读次数:
165
lib中加入包 struts2-json-plugin-2.3.20.jarcommons-lang3-3.2.jar WebRoot下新建js文件夹 放入json2.js ajaxUtil.js 自己封装的一个Ajax工具类 index.jsp核心代码: struts.xml AhJsonBean ...
分类:
Web程序 时间:
2017-01-06 07:43:25
阅读次数:
270
方式1 添加struts2的json插件jar包 配置文件 package extends=“json-default” <action><result type=“json”> 返回action对象的json <paran name=“root”>action对象的属性名</action> 返回a ...
分类:
其他好文 时间:
2016-12-16 14:12:10
阅读次数:
183
阅读这一篇文章,你至少需要掌握的技术有:servlet,jsp,javaban(java基础); 所需要的jar包: 1,封装表单的jar包:commons-beanutils-1.8.3.jar; commons-logging-1.1.1.jar; 2,jdbc数据库的jar包(这里用的mysq ...
分类:
编程语言 时间:
2016-05-15 00:29:06
阅读次数:
309
struts2中使用json插件执行ajax处理时,如果方法名是get方法的时候,方法会莫名其妙的执行两次。原因:struts2 中JSON的原理是在ACTION中的get方法都会序列化,所以前面是get的方法只要没指定不序列化,都会执行解决方法Action中的业务方法前别加get 或者 set(属...
分类:
Web程序 时间:
2015-12-23 12:18:54
阅读次数:
236
前提准备: 1.struts2必备Jar包 2.struts2 Json插件json-plugin 可以转换action的返回结果为json数据,恰好配合extjs 的store进行数据的交互。
分类:
Web程序 时间:
2015-11-20 00:15:29
阅读次数:
166
插件下载地址:http://code.google.com/p/jquery-json/调用方法:var comment = {};comment.parentId = 1;comment.content = “test”;$.toJSON(comment)应用场景:当我们通过JavaScript调...
分类:
Web程序 时间:
2015-11-10 20:58:39
阅读次数:
202