2015-06-23 96 views
0

我需要添加html元素形式的幫手。有沒有辦法?如何從helper返回html元素?

模板:

<template name="Index"> 
<div class="title"> {{title}} </div> 
</template> 

JS

Template.Index.helpers({ 
    title: function(){ 
    var testvariable = "Hello <b>World</b>"; 
    return testvariable; 
    } 
}) 

注:下面的方法將正常工作。但在我的情況下,標題字符串是動態內容。

<div class="title"> Hello <b>{{title}}</b> </div> 
var testvariable = "World"; 
+2

[Meteor.js,MongoDB retreiving HTML在Template中使用]的可能重複(http://stackoverflow.com/questions/16565054/meteor-js-mongodb-retreiving-html-for-use-in-template) – Dan

回答

3

你需要使用三重括號這樣的:

{{{ title }}} 

檢查the docs更多的相關信息。