改变参数无效。。。轮播只能自己手动滑动才有效果。。

改变参数无效。。。轮播只能自己手动滑动才有效果。。

自己想了好久。没找到到底错在哪了。老师能不能帮忙看看

homeindex

<template>
<div class="home">
<router-view></router-view>
<div class="g-header-container">
<home-header></home-header>
</div>
<div class="g-middle-container">
<home-slider></home-slider>
</div>
<div class="g-backtop-container"></div>
</div>
</template>

<script>
import HomeHeader from './header'
import HomeSlider from './slider'
export default {
components:{
HomeHeader,
HomeSlider
},
props:{},
data(){
return {
}
},
watch:{},
computed:{},
methods:{},
created(){},
mounted(){}
}
</script>
<style lang="scss" scoped>
@import '../../assets/scss/mixins';
.home{
overflow: hidden;
width: 100%;
height: 100%;
background-color: $bgc-theme
}

</style>

homeslider

<template>
<div class="slider-wrapper">
<my-slider
:direction="direction"
:loop='loop'
:interval='interval'
:pagination='pagination'
>
<swiper-slide 
v-for="(item,index) in sliders"
:key="index"
>
<a :href="item.linkurl" class="slider-link">
<img :src="item.imgurl" alt="" class="slider-img">
</a>
</swiper-slide>
</my-slider>
</div>
</template>

<script>
import MySlider from '@/base/slider/index'
import {swiperSlide} from 'vue-awesome-swiper'

export default {
components:{
MySlider,
swiperSlide
},
props:{},
data(){
return {
direction: "",
loop: false,
interval: 0,
pagination: true,
sliders: [
{
'linkurl':'http://www.baidu.com',
'imgurl':require('./1.jpg')
},
{
'linkurl':'http://www.baidu.com',
'imgurl':require('./2.jpg')
},
{
'linkurl':'http://www.baidu.com',
'imgurl':require('./3.jpg')
},
{
'linkurl':'http://www.baidu.com',
'imgurl':require('./4.jpg')
}

]

}
},
watch:{},
computed:{},
methods:{},
created(){},
mounted(){}
}
</script>
<style lang="scss" scoped>
.slider-wrapper{
height: 183px;
}
.slider-link,
.slider-img{
width: 100%;
height: 100%;
}
</style>

sliderindex

<template>
<swiper :options='swiperOption'>
<!-- 此为只正对本项目的写法 -->
<!-- <swiper-slide v-for="item in sliders">
          <a href="">
              <img src="" alt="">
          </a>
      </swiper-slide> -->
<slot></slot>
<!-- 分页器,决定是否需要分页 -->
<div class="swiper-pagination" v-if="pagination" slot="pagination"></div>
</swiper>
</template>

<script>
import {swiper} from 'vue-awesome-swiper';
import 'swiper/dist/css/swiper.css';
export default {
components:{
swiper,

},
props:{
direction: {
type: String,
default: 'horizontal',
validator(value) {
return [
'horizontal',
'vertical'
].indexOf(value) > -1;
}
},
interval: {
type: Number,
default: 3000,
validator(value) {
return value >= 0;
}
},
loop: {
type: Boolean,
default: true
},
pagination: {
type: Boolean,
default: true
}
},
data(){
return {
swiperOptions: {
watchOverflow: true,
direction: this.direction,
autoplay: this.interval ? {
delay: this.interval,
disableOnInteraction: false
} : false,
slidesPerView: 1,
loop: this.data.length <= 1 ? false : this.loop,
pagination: {
el: this.pagination ? '.swiper-pagination' : null
}
}
}
},
watch:{},
computed:{},
methods:{},
created(){},
mounted(){}
}
</script>
<style lang="scss" scoped>
</style>


正在回答

登陆购买课程后可参与讨论,去登陆

4回答

同学你好,1、这个没有自动轮播是因为homeslider中interval: 0,设置为0是不自动轮播的。想要自动轮播,需要改为其他值,例:300

http://img1.sycdn.imooc.com//climg/5bee27b20001890002610116.jpg

2、如下,homeslider文件中,这个值建议设置我水平滚动。例:

http://img1.sycdn.imooc.com//climg/5bee2ba20001309604490095.jpg

3、sliderindex中的,单词应该是swiperOption。

http://img1.sycdn.imooc.com//climg/5bee2bd40001159a03570093.jpg

4、sliderindex中的,如下,这里不需要data

http://img1.sycdn.imooc.com//climg/5bee2c3a000152f907830096.jpg

若能帮助到你,望采纳。

祝学习愉快!


  • 慕无忌6236884 提问者 #1
    emm,这里swiperoption里的内容我是直接从辅助源码里拷贝过来的,完全不知道是因为这个data啊!!!这个data后面是有什么作用吗?如果没有作用,希望老师把给的源码哪里改改。。。太误导了
    2018-11-16 10:57:51
好帮手慕糖 2018-11-16 11:00:45

同学你好,这个后面是会用到的,老师也会有讲这个。

祝学习愉快!

提问者 慕无忌6236884 2018-11-16 09:30:13

我看视屏在十分钟的时候也有这个错误。。。。但在老师写入swiper-slider之后,错误就消失了且开始自动轮播。。。我按着视屏的代码做了一遍,还是只能自己手动滑动,swiperOptions还是undefined。为什么呢

  • 提问者 慕无忌6236884 #1
    这边的sliderindex代码里的两个swiperoption里有一个加了s,已纠正,无效果
    2018-11-16 09:36:11
提问者 慕无忌6236884 2018-11-15 22:33:12

我看了下报错提示。。。。错误的地方都是在swiperOptions这个地方错的,把有关swiperOptions这个关键字的数据和标签删掉就不报错 了。。。但是这样子的话参数也用不了了啊http://img1.sycdn.imooc.com//climg/5bed839f0001366105580710.jpg

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
热门框架Vue开发WebApp 18版
  • 参与学习           人
  • 提交作业       209    份
  • 解答问题       3299    个

本路径是通过ES6基础知识、运用Zepto、Swiper、fullPag等移动端常用工具包、以及当下流行框架Vue,结合多个实战案例,还原真实开发场景,最终实现手机端购物商城网页开发。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师