9

私はこのような配列を持っています

{
     "sCode":"05",
     "sCodeName":"critical_tight_connection",
     "iSeverity":1,
     "aData":{
         "iLevelOfDetailt":2,
         "iDuration":35,
         "sLabel":"Labai trumpas pers\u0117dimas, 35 min.",
         "sLink":""
     }
}

私は彼をsmartyで印刷しています(配列はシリアル化されていません。あなたの便宜のためにそれを行いました)

{if !empty( $aSegment.aNotices.aStop )}
    <ul>
        {foreach from=$aSegment.aNotices.aStop item=aNotice}
            <li>
                <img class="{$aNotice.sCodeName}" />
                {$aNotice.sLabel}
            </li>
        {/foreach}
    </ul>
{/if}

「05」が aNotices.aStop.sCode に存在するかどうかを smarty で確認する方法は? (foreach サイクルの前)

これを試した

{if in_array('05', $aSegment.aNotices.aStop)}
    exist
{/if}
4

3 に答える 3

26

これを使用できます:

{if '05'|in_array:$aSegment.aNotices.aStop}EXIST{/if}
于 2013-01-20T00:27:55.857 に答える
3

このような意味ですか?

{if $aNotice.sCode == '05'} ....
于 2013-01-18T14:26:31.683 に答える
0

hek2mglJeff Bicに感謝し、回答を修正しました。これは正常に機能します。

{if !$aSegment.aNotices.aStop|@count gt 0}
    {t lang='en'}Stop duration{/t}{if $server.lang != 'en'} / {t}Stop duration{/t}{/if}: {$aSector.aStops.$iSegmentIndex|mins_to_time}
{/if}
于 2013-01-21T08:29:00.183 に答える