美文网首页
《node.js开发指南》partial is not defi

《node.js开发指南》partial is not defi

作者: 北冥有鱼我养的 | 来源:发表于2019-07-06 13:51 被阅读0次

    由于ejs的升级,《node.js开发指南》中使用的 partial 函数已经摒弃,使用foreach,include代替

    原来的代码是:

    <%- partial('listitem',items) %>
    

    改成:

    <ul>
        <% items.forEach(function(listitem){%>
        <% include listitem%>
        <%}) %>
    </ul>
    

    相关文章

      网友评论

          本文标题:《node.js开发指南》partial is not defi

          本文链接:https://www.haomeiwen.com/subject/eoephctx.html