What kind of language is this nested in js?

there is a piece of code in the front-end js that doesn"t know what language or framework to write, and the background is php. Which great god knows
< script id= "aa" type= "text/html" >

            {if (list.iRet!="0")}
            <tr>
                <td>${list.sMsg}</td>
            </tr>
            {else}
            {for gift in list.myGiftList}
                <tr>
                    <td class="first">
                        {if (gift .areaName == "" || !isNaN(gift .areaName))}
                            ${gift .packageName}
                    </td>
                    {else}
                    <td class="second">${gift .getTime}</td>
                    {/if}
                </tr>
                {forelse}
                <tr><td colspan="2">xxxxxx</td></tr>
            {/for}
            {/if}

< / script >

Apr.05,2022

this is the template engine. Find out which js files are referenced on this page. Check them one by one, and you should be able to find the corresponding template engine.


misread it, sorry

Menu