0
我在我的收藏中保存了一些HTML內容。通過使用IronRouter data()
將用於設置遊標/數組。在這個例子中,我只是展示了一個示例數組。流星模板:解析html內容
現在HTML內容顯示不正確,因爲它不會被解析。用戶會看到HTML標籤。我需要做些什麼才能正確顯示內容?
IronRouter
Router.route('/article/:_id', {
name: 'article',
data: function() {
var articles = [{ title: 'title', content: '<strong>content</strong>'}];
return { articles: articles };
}
});
模板
<template name="article">
{{#each articles}}
<h1>{{title}}</h1>
<section>{{content}}</section>
{{/each}}
</template>
不知道 – user3142695