我想在nodeJS中使用LightGallery设计图片库。当我静态传递图像名称(路径)但现在我想传递EJS变量,该变量将包含文件夹中所有图像的名称时,它可以正常工作,但是它不起作用
这是代码
<% images.forEach(function(image){ %>
<% var imgpath = '/'+ new String(image) %>
<div class=" col-sm-6 col-lg-4">
<div zoom="false" data-download-url="false" data-sub-html="<h4>Fading Light</h4><p>Classic view </p>" data-src= <%= imgpath %> > //not Working Here tried Adding quotes still...
<a href="">
<img class="img-thumbnail img-responsive" src= "<%= imgpath %>" >
//This works fine here
</a>
</div>
</div>
<% }) %>
得到答案!这是一个Bootstrap错误,我使用了```那就是问题所在!