前端如何遍历Map转换而来的json数据?

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

以下是js代码: 

var shopingCart = result.data;				
				for(var i in shopingCart){
				    alert(shopingCart[i].number);
				}

result是后端传过来的封装json数据的对象,Map储存在result对象的data属性里,number是Map值里储存的对象的属性。

完整ajax如下:

$(".jiaLogo").click(function() {
		var url = $(this).attr("url");
		$.ajax({
			type : 'POST',
			url : url,
			dataType : 'json',
			success : function(result) {
				var shopingCart = result.data;				
				for(var i in shopingCart){
				    alert(shopingCart[i].number);
				}
			},
			error : function(xhr, type) {
				alert('Ajax error!')
			}
		})

	})

 

转载于:https://my.oschina.net/Cubicluo/blog/847273

你可能感兴趣的:(前端如何遍历Map转换而来的json数据?)