
S2SH
grey3
天道酬勤
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
struts2 Spring2.5 返回json
[code="java"]@Controller //纳入Spring管理 @Namespace("/") //相当于 @ParentPackage("json-default") //相当于 extends="struts-default" public class LoginAction extends ActionSupport{ /** * */ pr...2011-08-30 04:11:16 · 86 阅读 · 0 评论 -
解决URL传值中文乱码
前端使用:encodeURIComponent(encodeURIComponent("示例")) 转换两次 var queryStr = $('input[name="queryStr"]').val();queryStr = encodeURIComponent(encodeURIComponent(queryStr)); 后台java:使用URLDecoder.decode()进...原创 2013-08-16 15:07:58 · 90 阅读 · 0 评论