SpringMVC中使用JQuery的getJSON方法获取JSON对象的数据

【1】首先,引入jQuery文件


【2】接着,使用JQuery的getJSON语句获取JSON格式的数据:

$.getJSON("your url",{"key":value,....}, function(data){//data为获取的JSON数据
               //遍历JSON对象中的数据
		$.each(data, function(i,item){
                //根据key取值,name即为key
			alert(item.name);
		 });
	}); 

【3】接下来编辑后台被调用的方法(在controller中)

        /**
	 * 将返回值封装为键值对放入List集合返回
	 */
	@RequestMapping(value = "yourMethodWay", method = RequestMethod.GET, headers = { "Accept=application/json;charset=UTF-8"})
	public @ResponseBody List> yourMethodName(
			@RequestParam(value = "orderNo") String orderNo) {
		Map map = new HashMap();
		UserActivateOrder oldorder = new UserActivateOrder();
		oldorder.setOrderNo(orderNo);
		UserActivateOrder order = userActivateOrderService.findByOrderNo(oldorder).get(0);
		map.put("id", order.getId().toString());
		List> list = new ArrayList>();
		list.add(map);
		return list;
	}

仅供参考,欢迎批评指正

你可能感兴趣的:(json,jsp,jQuery)