我有一个带有自定义块帮助器的车把模板,该模板将上传到Amazon s3。除了文件的s3链接外,我还想显示该文件的到期时间戳。
以下是当前电子邮件把手模板的外观
You can download your report from below link. It expires at {{expiryTimestamp}}.
<a href="{{> report.hbs}}">Download Report</a>
上面用作report.hbs
的部分车把模板如下所示
{{#s3-link-helper data param2}}
{{#each data as |record|}}
{{record.field1}},{{record.field2}}
{{/each}}
{{/s3-link-helper}}
目前,我正在从外部提供一个大致的到期时间戳。我打算获得s3链接的确切expiryTimestamp。
我知道我需要更改我的助手以返回一个同时包含s3链接和到期时间的对象。我不确定是在父模板中使用两者的语法。