Why node js is not recognizing ending brackets for ejs

后端 未结 1 1952
时光说笑
时光说笑 2021-01-29 12:44

i am creating an image gallery in node js using express and ejs The following is the code for my app.js

var express = require(\'express\');
var          


        
1条回答
  •  攒了一身酷
    2021-01-29 13:20

    This:

    <% >})%>
    

    Should be this:

    <% })%>
    

    0 讨论(0)
提交回复
热议问题