2021年12月7日

git代码管理操作

摘要: 基本操作: 1.在项目中初始化git仓库 git init 2.将修改代码保存到暂存区 git add . 3.代码添加到本地仓库 git commit 分支操作: git branch 查看分支列表 git branch (branchname) 创建新分支 git checkout (branc 阅读全文

posted @ 2021-12-07 19:53 I666999 阅读(98) 评论(0) 推荐(0)

小程序中的下拉分页的实现

摘要: //小程序自带的上拉触底事件onReachBottomQueryParams={id:'',pagenum:1,pagesize:10}totalPages=1 onReachBottom:function() { //对当前页码和总页数进行判断,如果当前页码大于等于总页数则提示触底 if(this 阅读全文

posted @ 2021-12-07 19:01 I666999 阅读(340) 评论(0) 推荐(0)

导航