获取后台数据转换

formatter: function (cellvalue, options, rowObject) {
                            var name = "";
                            getAjax('/HouseModule/Y_Dictionary/BinDingItemsJson', { Code: 'houseType' }, function (data) {
                                var itemjson = eval("(" + data + ")");
                                $.each(itemjson, function (i) {
                                    if (cellvalue == itemjson[i].Code) {
                                       name= itemjson[i].FullName;
                                    }
                                });
                            });
                            return name;
                        }

 

posted @ 2019-12-26 12:31  末郁  阅读(196)  评论(0编辑  收藏  举报