获取后台数据转换
Posted billblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取后台数据转换相关的知识,希望对你有一定的参考价值。
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; }
以上是关于获取后台数据转换的主要内容,如果未能解决你的问题,请参考以下文章