关于EasyUI Datagrid JSON对象内嵌对象的取值问题

原创
2012/09/16 06:14
阅读数 4.3K
如有这样一个JSON对象:
{"goods":[
        {"id":1,"category":{"id":1,name:"category1"},"name":"NameA","shelfLife":12},
        {"id":1,"category":{"id":1,name:"category1"},"name":"NameB","shelfLife":12},
    ]
}
在页面中,我要在EasyUI的datagrid中显示如下列:
id,category中的name,name
则做如下处理:
<table id="datagrid" class="easyui-datagrid" width="460px"
url="goodsList" title="商品表" auto-resize="true" pagination="true"
fitColumns="true">
    <thead>
        <tr>
<th field="id" checkbox="true"></th>
<th field="name">商品名称</th>
<th field="category" formatter="formatCategory">商品类别</th>
<th field="shelfLife" formatter="formatShelfLife">保质期</th>
        </tr>
    </thead>
</table>

<script>
    function formatCategory(value){ 
        return value.name;
    }; 
   function  formatShelfLife (value){ 
        return value + " 月";
    };
</script>
展开阅读全文
加载中
点击加入讨论🔥(1) 发布并加入讨论🔥
打赏
1 评论
3 收藏
0
分享
返回顶部
顶部