我的ember应用程序中有一个标准方式来显示警报消息。我只是传了一个字符串。
但现在我想在我的信息中包含一个余烬链接。
这不起作用:
afterModel: function(model) {
if (model.length) {
this.send("addAlert", "Click {{#link-to 'reviews.show' 1}}here{{/link-to}} to see the review");
}
}
这是html的呈现方式:
{{#each alerts as |alert|}}
<div data-alert class="alert-box {{alert.state}} radius">
{{{alert.message}}}
<a class="close" {{action 'removeAlert' alert}}>x </a>
</div>
{{/each}}
使用把手tripple-thing {{{}}}
关于如何使这项工作的任何想法?