我想用ejs将数据库中的数据打印到元素中

I want to print the data from the database into the element with ejs

this is my data on database

这是我的 posts.ejs 文件

<p>
    <%= data[i]['article'] %>
</p>

and this is output

pre标签里怎么写

使用这个

<%- data[i]['article'] %>

而不是这个

<%= data[i]['article'] %>

关于此的更多信息here