Salesforce 闪电传送带问题

Salesforce 闪电传送带问题,salesforce,carousel,salesforce-lightning,lwc,Salesforce,Carousel,Salesforce Lightning,Lwc,我在lwc中构建的lightning旋转木马遇到了一些问题,好像它在旋转木马中只显示了5到6个图像,其余的没有显示。如果对图像数量有任何限制,请您建议最好的方法或备选方案,如HTML幻灯片或任何其他方法,以便在旋转木马内为1000个图像构建旋转木马。 这里我从父组件加载图像 import { LightningElement, api } from "lwc"; export default class fcxmCarousel extends LightningElement { @ap

我在lwc中构建的lightning旋转木马遇到了一些问题,好像它在旋转木马中只显示了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>
从“lwc”导入{LightningElement,api};
导出默认类fcxmCarousel扩展LightningElement{
@api selectdImage;
@api值;
}

是的,我们只能使用标准lightning转盘组件显示5-6幅图像,有关详细信息,请参阅此链接