我正在使用EJS,并在循环中有条件地包含文件。形式
<%
items.forEach(prop => {
if(properties[prop].type === 'string'){
%>
<%- include('type_string.ejs') %>
<%
} else if(item.type === 'options') {
%>
<%- include('type_option.ejs') %>
<%
}
});
%>
但类型和模板更多。
有没有更好的方法来进行包含?也许没有一遍又一遍地对ejs进行转义。
谢谢!