0

xtemplate を使用して、表示されるテキストを調整したいと考えています。私はしようとしています:

<tpl for=".">;
<tpl if="data1=="something"">;
    'something will appear here<tpl>';
<tpl elseif="data2="somethingelse"">;
    'something else </tpl>;
</tpl>

しかし、うまくいかないのはなぜですか??

4

2 に答える 2

1

if ステートメントで引用符をエスケープする必要があるようです。

<tpl  if="data1=="something""> 

する必要があります

<tpl if="data1==\"something\"">

また、例のようにカンマ区切りの文字列にする必要があります

http://docs.sencha.com/touch/2.2.1/#!/api/Ext.XTemplate

于 2013-10-09T05:12:11.170 に答える