轮播图不显示
来源:3-1 轮播图组件swiper
慕姐7077867
2022-01-01
老师好,我的轮播图无法显示,这是为什么啊,代码检查了好几遍没有问题啊
<!--pages/playlist/playlist.wxml-->
<swiper indicator-dots='true' autoplay='true' interval='2000' duration='1000'>
<block wx:for="{{swiperImgUrls}}">
<swiper-item>
<image src="{{item.url}}" mode='widthFix'>
</image>
</swiper-item>
</block>
</swiper>
<!--pages/playlist/playlist.wxml-->
<swiper indicator-dots='true' autoplay='true' interval='2000' duration='1000'>
<block wx:for="{{swiperImgUrls}}">
<swiper-item>
<image src="{{item.url}}" mode='widthFix'>
</image>
</swiper-item>
</block>
</swiper>
// pages/playlist/playlist.js
Page({
/**
* 页面的初始数据
*/
data: {
swiperImgUrls:[{
url: 'http://p1.music.126.net/oeH9rlBAj3UNkhOmfog8Hw==/109951164169407335.jpg',
},
{
url: 'http://p1.music.126.net/xhWAaHI-SIYP8ZMzL9NOqg==/109951164167032995.jpg',
},
{
url: 'http://p1.music.126.net/Yo-FjrJTQ9clkDkuUCTtUg==/109951164169441928.jpg',
}
]
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
写回答
2回答
-
谢成
2022-01-02
我把上面的代码运行起来是没有问题的,可以看到轮播图:
1、把图片url在浏览器中打开,看下能否看到图片
2、请在调试器的wxml中选中结构,看下是不是有其他元素影响了swiper
00 -
谢成
2022-01-02
我把上面的代码运行起来是没有问题的,可以看到轮播图:
1、把图片url在浏览器中打开,看下能否看到图片
2、请在调试器的wxml中选中结构,看下是不是有其他元素影响了swiper
012022-01-02