您的位置:首页 > 产品设计 > UI/UE

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

2017-07-18 14:50 483 查看
如有这样一个JSON对象:

[javascript] view
plain copy

{"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

则做如下处理:

view
source

print?

[html] view
plain copy

<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>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: