ExtJS XTemplate和空JSON解析

时间:2010-10-01 21:27:09

标签: json templates extjs

如何确定XTemplate中的JSON对象是空的?我试过了

<tpl if="myObject != {}">
<tpl if="myObject">
<tpl if="myObject != undefined">

等,但似乎无法找到检测空对象的正确方法。感谢。

1 个答案:

答案 0 :(得分:3)

<tpl if="!Ext.isEmpty(myObject)">