JSON对象内嵌JSON对象取值问题

JSON对象内嵌JSON对象取值问题

记录一下学习的问题

JSON对象

JSON对象内嵌JSON对象取值问题_第1张图片

后台

<th field="captain" formatter="formatter">手机号</th>

javascript

 function formatter(value) {
                return value.phone;
        }

取内嵌JSON对象的多个属性值

后台

<th field="cname" formatter="formatterName">手机号</th>
<th field="phone" formatter="formatterPhone">名称</th>

javascript

 function formatterName(value,row) {
                return row.captain.cname;
        }
 function formatterName(value,row) {
                return row.captain.phone;
        }

视图

JSON对象内嵌JSON对象取值问题_第2张图片

你可能感兴趣的:(JSON对象内嵌JSON对象取值问题)