使用vue和bootstrap实现轮播时出现 Cannot read property 'offsetWidth'报错

发布于 2022-09-06 15:53:18 字数 2579 浏览 10 评论 0

使用vue和bootstrap实现轮播时出现 Cannot read property 'offsetWidth'报错,但不影响使用,请大神帮忙看一下是怎么回事。链接描述
图片描述
链接左上角附有源代码包,希望大神帮忙看看


<!-- 代码-->

<div id="Carousel_1" class="carousel slide" data-ride="carousel">

            <ol class="carousel-indicators">
                <li v-for="(item,index) in items" :data-slide-to="index" :class="{'active':index==0}" data-target="#Carousel_1"></li>
            </ol>
            <!-- Wrapper for slides -->
            <div class="carousel-inner" role="listbox">
                <lunbo-img v-for="(item,index) in items"
                           v-bind:todo="item"
                           v-bind:index="index"
                           ></lunbo-img>
            </div>

            <!-- Controls -->
            <a class="left carousel-control" href="#Carousel_1" role="button" data-slide="prev">
                <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
                <span class="sr-only">Previous</span>
            </a>
            <a class="right carousel-control" href="#Carousel_1" role="button" data-slide="next">
                <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
                <span class="sr-only">Next</span>
            </a>
        </div>

        


js:
// 轮播数字模板

Vue.component('lunbo_num',{
    template:"#lunbo_num",
});

//轮播图片模板
Vue.component('lunbo-img',{
    props:['todo','index'],
    template:"#lunbo_img",
})

//轮播
var Carousel_1 = new Vue({
    el:"#Carousel_1",
    data:{
        items:[
            {
                alt:"我是第一张图片",
                img:"img/lunbo01.jpg",
                h1:"我是第一张图片",
                p:"this is the first photo"
            },
            {
                alt:"我是第二张图片",
                img:"img/lunbo02.jpg",
                h1:"我是第二张图片",
                p:"this is the second photo"
            },
            {
                alt:"我是第三张图片",
                img:"img/lunbo03.jpg",
                h1:"我是第三张图片",
                p:"this is the third photo"
            },
        ]
    },
    mounted(){
        $('.carousel').carousel({
            interval: 2000
        })
    }
})

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懒猫 2022-09-13 15:53:18

轮播的时候可能里列表里没有加载出项目;
造成 li数量为 0,li 没有, offsetWidth肯定报错;
可以先添加一个判断 <lunbo-img>是否为 0,再计算。

浅听莫相离 2022-09-13 15:53:18

兄台,我也遇到了你的问题,请问解决了吗

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文