1
私はMySQLの列にhtmlコードのデータを持っている、私はビュー(swigビューモジュールを使用して)でそれを呼び出す。ビューでhtmlコードのように表示するにはどうすればいいですか?SWIGビューexpress.jsでhtmlをレンダリングするには?
server.js
app.engine('html', swig.renderFile);
app.set('view engine', 'html');
app.set('views', __dirname + '/views');
controller.js
newsExports.insertNews(title, content, dateadded, validpercent, basetitle, function(news){
res.render('index/news', {news: news});
})
view.html
{% for i in news %}
{{i.content}}
{% endfor %}