try catch
jQuery tmpl でどのように記述できますか? 2 つの方法で試してみたところ、次のエラーが発生しました。
1. Uncaught SyntaxError: Unexpected token try
{{each items}}
<div>
<span>
${
try{
services[0].id
}catch(e){
throw new Error(e)
}
}
</span>
</div>
{{/each}}
2. Uncaught Unknown template タグ: try
{{each items }}
<div>
{{try {}}
<span>${services[0].id}</span>
{{} catch(e){
throw new Error(e)
}
}}
</div>
{{/each }}