2023年5月11日
摘要: var sid = setInterval可以循环执行,可以每秒执行里面的回调函数,结束循环的方法是clearInterval(id),id指的是setInterval的sid setTimeout仅执行一次,可以指定多少秒后执行里面的回调函数 关注我的公众号SpaceObj 领取idea系列激活码 阅读全文
posted @ 2023-05-11 09:59 张伯灵 阅读(8) 评论(0) 推荐(0) 编辑
摘要: countDownNum(){ if(that.number=="获取验证码"||that.number=="重新获取"){ that.number = 60; if(that.number == 60){ var sid = setInterval(function() { that.number 阅读全文
posted @ 2023-05-11 09:58 张伯灵 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 首先需要下载插件 https://github.com/dcloudio/uParse 存放插件 存放到项目自定的目录中 引入插件 script里面引入 import uParse from '@/static/u-parse/u-parse.vue' 注意:引入的时候是你自己之前存放的路径 exp 阅读全文
posted @ 2023-05-11 09:57 张伯灵 阅读(454) 评论(0) 推荐(0) 编辑
摘要: html部分 <view class="video-background-modal" v-for="(dataList,ids) in dataList" :key="ids"> <video :src="video_directory+dataList.video.videoPath" @tim 阅读全文
posted @ 2023-05-11 09:57 张伯灵 阅读(517) 评论(0) 推荐(0) 编辑
摘要: html部分 <div class="layui-form-item"> <label class="layui-form-label" style="width: 200px;margin-left: -120px">image for shopping</label> <div class="l 阅读全文
posted @ 2023-05-11 09:56 张伯灵 阅读(57) 评论(0) 推荐(0) 编辑
摘要: function post(url, data) { return uni.request({ url: urlHeader + url, data: data, header:{ token:app.globalData.token }, method: "POST" }).then((res) 阅读全文
posted @ 2023-05-11 09:56 张伯灵 阅读(23) 评论(0) 推荐(0) 编辑
摘要: //首先获取前端传递过来的参数对象“shopping”,转化成Object Object object = requestObject.get("shopping"); //创建ObjectMapper ObjectMapper objectMapper = new ObjectMapper(); 阅读全文
posted @ 2023-05-11 09:55 张伯灵 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/1914054/202305/1914054-20230511095509651-1387333764.png) 阅读全文
posted @ 2023-05-11 09:55 张伯灵 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.全局配置安卓sdk(settings),ctrl+Atl+S,配置Android SDK 2.System Settings 取消勾选Reopen last project on startup 3.配置搜索gradle下载包的路径 4.编码utf-8 5.打包:gradle-->Tasks-- 阅读全文
posted @ 2023-05-11 09:54 张伯灵 阅读(149) 评论(0) 推荐(0) 编辑
摘要: @Data @ToString public class SortingImagesUtil { public static List<Map<String,Object>> allImages =new ArrayList<Map<String, Object>>(); //在List中追加map 阅读全文
posted @ 2023-05-11 09:53 张伯灵 阅读(14) 评论(0) 推荐(0) 编辑