我可以在我的Smarty标记代码中包含Angular变量,如下所示:
<input type="radio" name="cust_id" value="{literal}{{custItem.custComp.id|number: 0}}{/literal}"/>
然而,当我在包含括号的Smarty代码中包含一个Angular变量时,例如在其中任何一个实例中,我都会收到语法错误:
{ include file='showCustomer.tpl'
custCompObj={literal}custItem.custComp{/literal} requestId=""
token_blacklisted=$msg.an
token_specialAgreements=$msg.ao
token_allconfidential=$msg.b2
token_history=$msg.ap
token_documents=$msg.aq
}
或者可能将其定义为变量:
{assign var="custComp" value="{literal}{{custItem.custComp}}{/literal}"}
如何在Smarty括号中的代码中包含Angular变量?