一个页面,我调用自定义选择框指令来显示月份,该指令需要一些参数:
<custom-select-box
id="month"
model="month"
model-required
model-name="month"
options="month.value as month.name for month in months"
aria-label="{{month.name}}">
<option value="">{{'dcl-spa.components.claim-and-link.month.mm'|translate}}</option>
</custom-select-box>
但是当我直接到这个页面或刷新时,里面的参数{{'dcl-spa.components.claim-and-link.month.mm'|translate}}
不能<option>
绑定到 html,只是dcl-spa.components.claim-and-link.month.mm
在页面上显示键。指令 custom-select-box 不能更改。那么我该怎么办呢?谢谢