我的 Spring 计划里有这个
@RequestMapping(value = "/show", method = RequestMethod.GET)
public String view(ModelMap request, @RequestParam("items") String Items){
System.out.println(Items);
}
打印下面的json
{
"items":[
{
"price":30
},
{
"price":"50"
}
]
}
但当我将上述json数据传递到jsp文件时,它会转换为
{"items":[{"Price":"30"},{"Price":"50"}]}
如何解码,以便我可以正确地显示在我的看法?顺便说一句,我得到的上面的req参数是编码的url json。
1条答案
按热度按时间bvjveswy1#
双引号将转换为" html ascii,因为您没有使用转义字符。您可以使用\“(转义字符,按原样传递双引号)。
外汇。
或者可以使用jackson之类的库为您解析json。