标签: json templates extjs
如何确定XTemplate中的JSON对象是空的?我试过了
<tpl if="myObject != {}"> <tpl if="myObject"> <tpl if="myObject != undefined">
等,但似乎无法找到检测空对象的正确方法。感谢。
答案 0 :(得分:3)
<tpl if="!Ext.isEmpty(myObject)">