我的 JSON 大部分时间都在其结构中包含这两个:“类型”和“评论”。有时它有“类型”、“调查”、“评论”。所以,我想使用“if”让 ext.xtemplate 显示它找到的那些。例如我试过这个但不起作用:
new Ext.XTemplate(
'<div style="text-align:justify;text-justify:inner-word">',
'<b>Type:</b> {type}<br/>',
'<tpl if="survey">',
<b>Survey:</b> {survey}<br/>',
'</tpl>',
'<b>Comments:</b> {comments}',
'</div>'
我也尝试过这些,但没有成功:
<tpl if="survey != {}">
<tpl if="survey != undefined">
怎么可能是检测不存在物体的正确方法?,提前谢谢。
PS。我正在使用 ExtJS 3.4