上一页 1 2 3 4 5 6 7 ··· 27 下一页
摘要: <component ref="XXX" v-show="isShow" @hidden="hidden"></component> 子组件添加ref的属性,然后通过 this.$refs.属性名,获取子组件的DOM的所有元素 this.$refs.XXX最后清空值 Object.assign(th 阅读全文
posted @ 2021-12-08 15:18 夏冬青 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: // 字符串的下划线格式转驼峰格式,eg:hello_world => helloWorld function underline2Hump(s) { return s.replace(/_(\w)/g, function(all, letter) { return letter.toUpperCa 阅读全文
posted @ 2021-12-08 15:17 夏冬青 阅读(1628) 评论(0) 推荐(0) 编辑
摘要: package com.hswg.jstxb.issued.common.FileUtil;/** * Created by TongGuoBo on 2019/6/19. */ import org.springframework.web.multipart.MultipartFile; impo 阅读全文
posted @ 2021-12-02 14:20 夏冬青 阅读(168) 评论(1) 推荐(0) 编辑
摘要: <template> <a-card :bordered="false"> <s-table ref="table" size="default" bordered rowKey="examId" :columns="columns" :data="loadData" dataPath="infor 阅读全文
posted @ 2021-12-02 14:19 夏冬青 阅读(897) 评论(0) 推荐(0) 编辑
摘要: /** * 读取远程url图片,得到宽高 * @param imgurl 图片路径 * @return [0] 宽 [1]高 */ public static int[] getImgWH(String imgurl) { boolean b=false; try { //实例化url URL ur 阅读全文
posted @ 2021-11-28 08:35 夏冬青 阅读(1507) 评论(0) 推荐(0) 编辑
摘要: 在示例中,我们创建了一个 int 类型的数组 arrayOfInts,并用一些项目填充它。要将 arrayOfInts 转换为字符串,我们使用 Arrays.toString() 并将其作为参数传递,该参数返回我们在输出中打印的字符串 arrayToString。 import java.util. 阅读全文
posted @ 2021-11-28 08:34 夏冬青 阅读(17550) 评论(0) 推荐(1) 编辑
摘要: 微信小程序的组件和普通的 HTML 有所不同,比如 HTML 的 div 在小程序里面是 view ,HTML 的 span 在小程序里是 text 。 因为 uni-app 要兼容多终端和各种小程序,所以它的语法和微信小程序是基本一致的。 今天就整理一下小程序的图片组件(image)的缩放和裁切显 阅读全文
posted @ 2021-11-28 08:30 夏冬青 阅读(4346) 评论(0) 推荐(0) 编辑
摘要: 其实是在sql的最后加上 limit 相关的语句。 QueryWrapper wrapper = new QueryWrapper<>(); wrapper.last("limit 1"); 阅读全文
posted @ 2021-11-28 08:17 夏冬青 阅读(5666) 评论(0) 推荐(0) 编辑
摘要: onShow() { var pages = getCurrentPages(); // 获取当前页面栈 var curPage = pages[pages.length - 1]; // 当前页面 if(curPage.data.init){ curPage.data.init = false; 阅读全文
posted @ 2021-11-28 08:16 夏冬青 阅读(2794) 评论(0) 推荐(0) 编辑
摘要: if (typeof thisObj.city 'undefined') { return } 阅读全文
posted @ 2021-11-10 09:21 夏冬青 阅读(1704) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 27 下一页