自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 记录vite打包部署问题

Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec

2023-12-19 17:23:25 351

原创 vue3全局变量定义及使用

定义全局变量 const app = createApp({}) app.config.globalProperties.$http = () => {} 全局变量使用 const { proxy } = getCurrentInstance() 全局变量为null 如果按照上述情况还是获取不到,检测是否写在自定义函数中,尝试写在setup函数中 setup(){ const { proxy } = getCurrentInstance() } ...

2021-12-24 09:35:15 2634

原创 个推jar包无法下载

maven配置文件 <mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>*,!getui-nexus</mirrorOf> <name>Nexus aliyun</name> <url>https://maven.aliyun.com/nexus/content/groups/public/</url> </mir

2021-12-16 15:46:03 375

原创 vue-router编程式页面跳转

1. 不携带参数 this.$router.push('/xxx') 2. 通过query携带参数 this.$router.push({ path: '/xxx', // 使用query携带参数,可以使用path,也可以是用name name: 'xxx', // 二者可以选其一 query:{ id: 1, } }) // 页面路径表现 http://localhost:8080/xxxx?id=1 // 组件获取参数 this.$route.quer

2021-04-30 21:57:32 365 1

原创 vue中e指代元素

currentTarge中, e指代绑定事件元素 target中,e指代触发事件元素

2020-11-19 12:30:13 1705

原创 picker使用及显示问题

<view class='line'> <view class='lineLeft'>*上级单位</view> <picker mode="selector" :range="division" :range-key="'name'" @change="change" :value="selectDivision" data-name="division" @cancel="pickerClose" @tap="changStatus" class=

2020-11-19 12:23:42 1299

原创 c#中的SqlHelper类介绍

SQLConnection 作用: SqlConnection类用于连接SQLSERVER数据库,使用该类对象可以打开数据库连接,和关闭数据库连接 创建对象的方法 string ConnStr = ConfigurationManager.AppSettings["ConnectionString"] SqlConnection conn = new SqlConnection(Co...

2020-05-03 09:51:47 902

原创 可变类型和不可变类型及函数传参

a = 100 b = a print('a:%d'%id(a)) print('b:%d'%id(b)) a = 200 print('a:%d'%id(a)) print(b, "b:%d"%id(b)) # 运行结果 a:1965193792 b:1965193792 a:1965196992 100 b:1965193792 以上内容分为四部分理解: a定义为整数类型变量,不可变. ...

2019-03-07 11:04:39 618 1

原创 __name__问题

1.建立test1.py文件 print(__name__) if __name__ == '__main__': print(__name__) # 运行结果: __main__ __main__ 2.建立test2.py文件 import test1 print(test.__name__) print(__name__) 运行结果: test1 test1 __main__ ...

2019-03-05 08:57:53 174

原创 数据库提高训练

数据库查询强化训练 笔记链接: link

2019-03-04 11:18:58 154

原创 mysql指令集合

# 常用指令 select version(); # 查看mysql的版本 show databases; # 显示当前所有的数据库 use database_name; # 选择使用的数据库名字 create database database_name charset utf8; # 创建数据库 # 对于数据表的操作(对数据表的操作使用alter) show tables; # 显示...

2019-02-22 11:11:53 184

原创 git操作指令

git操作总结 git常用指令 git version # 查看git的版本 sudo apt-get install git # 安装git git status # 查看当前目录下文件所在的区域,红色是工作区,绿色是暂存区 git log # 查看详细版本历史信息 git reflog # 查看简要的版本历史信息 git配置 git config --global user.name "us...

2019-02-20 17:57:55 227

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除