在请求目标中找到无效字符。有效字符在RFC 7230和RFC 3986中定义

tomcat部署war包,页面传递中文参数报错。

传递中文参数需要编码和解码

var targetUrl = "${basePath}/search?keyword=" + encodeURIComponent(encodeURIComponent(strSearch));
window.location.href= targetUrl;
@RequestMapping("search")
    public String search(Model model,String keyword) throws UnsupportedEncodingException {
        keyword = URLDecoder.decode(keyword, "utf-8");
        model.addAttribute("keyword",keyword);
        return "web/search";
    }

 

上一篇:mysql 开发进阶篇系列 25 数据库RPM安装目录介绍


下一篇:1.7 URI 和 URL