11 2023 档案
vue3中setup、reactive、defineProps和defineEmits、ref
摘要:一、vue3简介 vue3的优点 (1)、最火框架,它是国内最火的前端框架之一 (2)、性能提升,运行速度是vue2.x的1.5倍左右 (3)、体积更小,按需编译体积比vue2.x要更小 (4)、类型推断,更好的支持Ts(typescript)这个也是趋势 (5)、高级给予,暴露了更底层的API和提 阅读全文
posted @ 2023-11-27 10:44 周文豪 阅读(1120) 评论(0) 推荐(0) 编辑
报错:Invalid bound statement (not found): com.ljxx.pts.dao.SitePriceMapper.selectByLike
摘要:如果你是Mybatis的话请注意yml或者properties文件里面的组件扫描 #指定mapper.xml的位置 mybatis.mapperLocations=classpath*:mapper/**/*Mapper.xml mybatis.configuration.map-underscor 阅读全文
posted @ 2023-11-22 09:08 周文豪 阅读(10) 评论(0) 推荐(0) 编辑
报错:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.itheima.dao.JobMapper.selectJobAll(找不到mapper.xml)
摘要:报错如下: 解决办法: 在配置文件中指定mapper.xml的位置: mybatis.mapperLocations = classpath*:com/itheima/dao/mappers/*Mapper.xml,com/itheima/dao/secondMappers/*Mapper.xml, 阅读全文
posted @ 2023-11-22 09:07 周文豪 阅读(42) 评论(0) 推荐(0) 编辑
高德地图 JS API for Javascript 入门
摘要:一、官方文档 地址:https://lbs.amap.com/api/javascript-api-v2/guide/abc/jscode JS API 示例:https://lbs.amap.com/demo/javascript-api/example/map-lifecycle/map-sho 阅读全文
posted @ 2023-11-20 16:49 周文豪 阅读(1166) 评论(0) 推荐(1) 编辑
aardio:进程操作
摘要:1、运行exe应用程序execute execute( = 运行exe应用程序,成功返回进程ID,参数详细用法请参考本函数源码以及 WINAPI 中 ShellExecuteEx 函数用法,运行 UWP 应用请使用 com.shell.activateApp 函数,raw.execute 提供了与本 阅读全文
posted @ 2023-11-17 10:19 周文豪 阅读(558) 评论(0) 推荐(0) 编辑
aardio:fsys文件操作
摘要:参考标准库/fsys文件操作/默认库 1、获取项目根目录的位置 getCurDir() = 获取当前目录。 当前目录易被改动,导致相对路径(例如 "./res/")位置变化。 路径首字符用单个斜杠或反斜杆表示「应用程序根目录」的写法更可靠,例如:(例如 "/res/")。 很多组件(例如文件对话框) 阅读全文
posted @ 2023-11-16 18:01 周文豪 阅读(1436) 评论(0) 推荐(0) 编辑
CSS:backdrop-filter实现磨砂玻璃(毛玻璃glassmorphism)特效
摘要:一、什么是backdrop-filter backdrop-filter 属性可以让你为一个元素后面区域添加图形效果(如模糊或颜色偏移)。 因为它适用于元素背后的所有元素,为了看到效果,必须使元素的背景至少部分透明。 backdrop-filter和background两个属性就可以把后边的背景图片 阅读全文
posted @ 2023-11-10 16:54 周文豪 阅读(2814) 评论(0) 推荐(0) 编辑
CSS:箭头
摘要:一、箭头产生的原理 1、设置一个div,然后给他设置样式:边框100px,上右下左颜色分别为绿、蓝、橘、红。然后设置div的高度和长度均为100px <template> <div class="about"> <div id="demo12"></div> </div> </template> < 阅读全文
posted @ 2023-11-10 15:08 周文豪 阅读(183) 评论(0) 推荐(0) 编辑
ArcGIS API for JavaScript入门
摘要:arcgis官网:https://arcgis.fenxianglu.cn/docs/load.html 官网英文版地址:https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html 一、集成到应用 @arcg 阅读全文
posted @ 2023-11-07 17:53 周文豪 阅读(4949) 评论(0) 推荐(0) 编辑
DecimalFormat的基本用法
摘要:一、舍入模式RoundingMode 1、舍入模式RoundingMode为截断Down public static void main(String[] args) { double num = 11.256; DecimalFormat df = new DecimalFormat("#.##" 阅读全文
posted @ 2023-11-01 10:58 周文豪 阅读(448) 评论(0) 推荐(0) 编辑
MySQL的create table as 与create table like区别
摘要:一、区别 对于mysql的复制相同表结构方法,有create table as 和create table like 两种: create table t2 as select * from t1; as创建出来的t2表(新表)缺少t1表(源表)的索引信息,只有表结构相同,没有索引。 create 阅读全文
posted @ 2023-11-01 09:18 周文豪 阅读(2195) 评论(0) 推荐(0) 编辑
微信小程序-数字识别
摘要:前言:百度API可以在微信小程序中进行数字识别,而微信小程序通用印刷体识别需要请求后台,在后台调用微信接口获取要识别的结果。 一、基于百度AI接口的数字识别 开发前的准备:需要在百度AI开放平台创建相关应用实例,在开发中会用到里面的相关数据,具体创建流程可以参考官方文档的QuickStart 代码如 阅读全文
posted @ 2023-11-01 09:16 周文豪 阅读(342) 评论(1) 推荐(0) 编辑