如何使用NodeJ在Vash文件中呈现HTML实体字符串

时间:2017-03-31 12:55:51

标签: javascript html node.js express

我无法在下面的代码中获取vash文件中的Hello world: -

var result = {"description" : "<H1>Hello world</H1>"};
res.render('home',{data:result});

In home.vash  
@modal.data.description
The out put is  
<H1>Hello world</H1>
but I want only Hello world with html entity properties

1 个答案:

答案 0 :(得分:0)

当您将数据从节点js传递到任何html编译的文件(如.vash或.ejs)时,数据将作为字符串传递。数据不会呈现为html标记。


    var result = {"description" : "Hello world"};
    res.render('home',{data:result});

In home.vash
在html标记

中写下你的.vash代码@modal.data.description