我在spring的control层尝试使用@ResponseJSONP注解,但是前端收到的json一直是由问题的:
/**/null("{"result":"success"}")一直多个null,我看ResponseJSONP的注解继承自@responsebody,不是跟@ResopnseBody的用法一样的??我这段代码用在@responsebody下是没有问题的,fastjson版本1.2.47
`//@responsebody
@ResponseJSONP
public String getSaveBlog(@RequestBody Blog blog){
Map<String,String> mp = new HashMap<>();
mp.put("result","success");
log.error(JSON.toJSONString(mp));
return JSON.toJSONString(mp);
}`
暂无答案!
目前还没有任何答案,快来回答吧!