SpringMVC中JSONP的基本使用

 1 @RequestMapping("/check/{param}/{type}")
 2     @ResponseBody
 3     public Object checkData(@PathVariable String param, @PathVariable Integer type, String callback) {
 4 
 5         TaotaoResult result = null;
 6 
 7         // 参数有效性校验
 8         if (StringUtils.isBlank(param)) {
 9             result = TaotaoResult.build(400, "校验内容不能为空");
10         }
11         if (type == null) {
12             result = TaotaoResult.build(400, "校验内容类型不能为空");
13         }
14         if (type != 1 && type != 2 && type != 3) {
15             result = TaotaoResult.build(400, "校验内容类型错误");
16         }
17         // 校验出错
18         if (null != result) {
19             if (null != callback) {
20                 JSONPObject jsonpObject = new JSONPObject(callback, result);
21                 return jsonpObject;
22             } else {
23                 return result;
24             }
25         }
26         // 调用服务
27         try {
28             result = userService.checkData(param, type);
29 
30         } catch (Exception e) {
31             result = TaotaoResult.build(500, ExceptionUtil.getStackTrace(e));
32         }
33 
34         if (null != callback) {
35             JSONPObject jsonpObject = new JSONPObject(callback, result);
36             return jsonpObject;
37 //            MappingJacksonValue mappingJacksonValue = new MappingJacksonValue(result);
38         //    mappingJacksonValue.setJsonpFunction(callback);
39 //            mappingJacksonValue.setValue(callback);
40 //            return mappingJacksonValue;
41         } else {
42             return result;
43         }
44     }

 

转载于:https://www.cnblogs.com/116970u/p/10425346.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值