EJS包含转义js的文件

时间:2019-02-24 08:32:47

标签: ejs

我正在使用EJS,并在循环中有条件地包含文件。形式

 <%
items.forEach(prop => {

     if(properties[prop].type === 'string'){

     %>
         <%- include('type_string.ejs') %>
     <%
     } else if(item.type === 'options') {
     %>
         <%- include('type_option.ejs') %>
     <%
     }
});
%>

但类型和模板更多。

有没有更好的方法来进行包含?也许没有一遍又一遍地对ejs进行转义。

谢谢!

0 个答案:

没有答案