如何将EJS变量传递给LightGallery的data-src

问题描述 投票:0回答:1

我想在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>

 <% }) %>
javascript html jquery css ejs
1个回答
0
投票

得到答案!这是一个Bootstrap错误,我使用了```那就是问题所在!

© www.soinside.com 2019 - 2024. All rights reserved.