ejs模板是否有办法在另一个函数内调用函数?例如,我想这样做:
<% function graph(graph) { %>
<a href="<%= graph.href %>"><%= graph.description %></a>
<% } %>
<% function point(point) { %>
<Placemark id="<%= point.id %>">
<description>
<%= point.Apibudinimas %> <%= point.IP %>
<![CDATA[
<% graphs.map(graph) %>
]]>
</description>
</Placemark>
<% } %>
但它说图表未定义......
答案 0 :(得分:0)
您的代码是说“图形”(带有“s”)未定义而不是“图形”,对吗?你在哪里定义图数组?否则,代码看起来很好。