在js中json遍历List

在js中json遍历List
$.ajax({
        url : "positionFinds.action",
        dataType : "json",
        data : "depar.id="+deptId,
        type : "post",
        success : function(data, status) {

            //后台返回positions的List集合
            if(data!=null && data.positions!=null && data.positions.length>0){
                for(var i in data.positions){
                    var position=data.positions[i];
                    var id = position.id;
                    }
                }
            }
        }
    });

 

posted on 2016-02-25 15:13 Stanley_yu 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/yushouling/p/5217068.html

你可能感兴趣的:(在js中json遍历List)