IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> uni-app项目之 商品列表的下拉刷新 与 上拉加载更多 -> 正文阅读

[JavaScript知识库]uni-app项目之 商品列表的下拉刷新 与 上拉加载更多

uni-app项目之 商品列表的下拉刷新 与 上拉加载更多

uni-app项目之 商品列表的 上拉加载更多

goods.vue

<template>
	<view class="goods_wrap">
		<view class="goods_list">
			<view class="goods_list_item" v-for="item in shopList">
				{{ item.title}}
			</view>
		</view>
		<view class="isOver" v-if="isOverFlag">
			----我是有底线的----
		</view>
	</view>

</template>

<script>
	export default {
		data() {
			return {
				shopList:[],
				pageIndex:1,
				isOverFlag:false,
			}
		},
		onLoad() {
			this.getShopList();
		},
		// 触底触发
		onReachBottom() {
			console.log("触底触发", this.shopList.length);
			// 先判断是否有下一页的数据
			if ( this.shopList.length < this.pageIndex * 10) return this.isOverFlag = true;
			this.pageIndex++
			this.getShopList();
		},
		methods: {
			// 获取商品列表
			async getShopList(){
				const res = await this.$myHttp({
					url:"/shopList?pageIndex=" + this.pageIndex,
				})
				// 获取商品数据 
				this.shopList = [...this.shopList,...res.data];
			},
		}
	}
</script>

<style lang="scss">
	.goods_wrap{
		height: 100%;
		width: 100%;
		background: pink;
		.goods_list {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			padding: 0 15rpx;
			.goods_list_item {
				box-sizing: border-box;
				margin-bottom: 15rpx;
				background: #fff;
				width: 355rpx;
				height: 400rpx;
				line-height: 400rpx;
				text-align: center;
			}
		}
		.isOver {
			width: 100%;
			text-align: center;
		}
	}
</style>

效果

在这里插入图片描述

uni-app项目之 商品列表的下拉刷新

goods.vue

<template>
	<view class="goods_wrap">
		<view class="goods_list">
			<view class="goods_list_item" v-for="item in shopList">
				{{ item.title}}
			</view>
		</view>
		<view class="isOver" v-if="isOverFlag">
			----我是有底线的----
		</view>
	</view>

</template>

<script>
	export default {
		data() {
			return {
				shopList:[],
				pageIndex:1,
				isOverFlag:false,
			}
		},
		onLoad() {
			this.getShopList();
		},
		// 触底触发
		onReachBottom() {
			console.log("触底触发", this.shopList.length);
			// 先判断是否有下一页的数据
			if ( this.shopList.length < this.pageIndex * 10) return this.isOverFlag = true;
			this.pageIndex++
			this.getShopList();
		},
		// 下拉刷新了
		onPullDownRefresh(){
			console.log("下拉刷新了");
			this.pageIndex = 1;
			this.shopList = [];
			this.isOverFlag = false;
			setTimeout(()=> {
				this.getShopList(()=>{
					uni.stopPullDownRefresh(); // 关闭下拉刷新
				});
			}, 1000 )
			
		},
		methods: {
			// 获取商品列表
			async getShopList(callBack){
				const res = await this.$myHttp({
					url:"/shopList?pageIndex=" + this.pageIndex,
				})
				// 获取商品数据 
				this.shopList = [...this.shopList,...res.data];
				callBack && callBack()
			},
		}
	}
</script>

<style lang="scss">
	.goods_wrap{
		height: 100%;
		width: 100%;
		background: pink;
		.goods_list {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			padding: 0 15rpx;
			.goods_list_item {
				box-sizing: border-box;
				margin-bottom: 15rpx;
				background: #fff;
				width: 355rpx;
				height: 400rpx;
				line-height: 400rpx;
				text-align: center;
			}
		}
		.isOver {
			width: 100%;
			text-align: center;
		}
	}
</style>

pages.json

  • “enablePullDownRefresh”:true//
{
	"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
		{
			"path": "pages/index/index"
		}
	  ,{
            "path" : "pages/cart/cart"
        }
        ,{
            "path" : "pages/member/member"
        }
        ,{
            "path" : "pages/news/news"
        }
        ,{
            "path" : "pages/goods/goods",
						"style": {
							"enablePullDownRefresh":true// 开启下拉刷新
						}
        }
        ,{
            "path" : "pages/contact/contact"
        }
        ,{
            "path" : "pages/pics/pics"
        }
        ,{
            "path" : "pages/learn/learn"
        }
    ],
	"globalStyle": {
		"navigationBarTextStyle": "white",
		"navigationBarTitleText": "xzl-商场",
		"navigationBarBackgroundColor": "#b50e03",
		"backgroundColor": "#F8F8F8"
	},
	"tabBar":{
		"selectedColor":"#b50e03",
			"list":[
				{
					"text":"首页",
					"pagePath":"pages/index/index",
					"iconPath":"static/icon/home.png",
					"selectedIconPath":"static/icon/home-active.png"
				},
				{
					"text":"新闻",
					"pagePath":"pages/news/news",
					"iconPath":"static/icon/news.png",
					"selectedIconPath":"static/icon/news-active.png"
				},
				{
					"text":"购物车",
					"pagePath":"pages/cart/cart",
					"iconPath":"./static/icon/cart.png",
					"selectedIconPath":"static/icon/cart-active.png"
				},
				{
					"text":"会员",
					"pagePath":"pages/member/member",
					"iconPath":"static/icon/member.png",
					"selectedIconPath":"static/icon/member-active.png"
				}
			]
		}
}

效果

  • 上拉
    在这里插入图片描述
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-23 10:46:47  更:2022-04-23 10:47:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 1:27:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码