0

我在 lwc 中构建的闪电旋转木马遇到了一些问题,就像它在旋转木马内仅显示 5 到 6 张图像,而其余图像未显示。如果图像数量有任何限制,您能否建议最好的方法或替代方法,如 HTML 幻灯片或任何其他方式来为轮播内的 1000 张图像构建轮播。在这里,我从父组件加载图像。

import { LightningElement, api } from "lwc";

export default class fcxmCarousel extends LightningElement {
  @api selectdImage;
  @api value;
}



<template>

              <div class="slds-m-around_medium">


                        <div class="container">                    

                   <lightning-carousel> 

                      <template for:each={value}  for:item="rows">


                              <lightning-carousel-image  width="100%" height="50%"  key={imageURL} src = {rows.imageURL}
                              header={rows.imageName}
                              description={rows.imageDescription}>
                             </lightning-carousel-image>



                       </template>

                    </lightning-carousel>
                </div>
               </div>
        <!--   </lightning-card> -->
</template>
4

1 回答 1

0

是的,我们只能使用标准闪电轮播组件显示 5-6 张图像,有关更多详细信息,请将此链接冷藏https://developer.salesforce.com/docs/component-library/bundle/lightning:carousel

于 2020-04-23T10:55:35.320 回答