摘要:
各目录作用 {{}}引用data中的值 v-html引用data中的值并渲染到页面上 v-bind控制属性中的值 缩写 v-model 数据双向绑定 v-if v-on:click 监听事件 缩写 {{message|capitalize}} 过滤器,第一个是参数 在元素和template之间使用v 阅读全文
posted @ 2023-03-17 14:39
IT王师傅
阅读(40)
评论(0)
推荐(0)
摘要:
【简介】 python是一种解释型语言:在开发过程没有编译环节 python是交互式语言,可以在提示符>>>后面直接执行代码 phthon是面向对象语言 # 代表注释 代码缩进有严格的格式规范,缩进不对直接报错 数字有四种类型:整数、布尔、浮点和复数 整数:int,没有python2中的Long 布 阅读全文
posted @ 2023-03-17 14:38
IT王师傅
阅读(27)
评论(0)
推荐(0)
摘要:
【Oracle错误编码】 ORA-00001: 违反唯一约束条件 (.)错误说明:当在唯一索引所对应的列上键入重复值时,会触发此异常。 ORA-00017: 请求会话以设置跟踪事件 ORA-00018: 超出最大会话数 ORA-00019: 超出最大会话许可数 ORA-00020: 超出最大进程数 阅读全文
posted @ 2023-03-17 14:37
IT王师傅
阅读(523)
评论(0)
推荐(0)
摘要:
#呼吸慢病患者端server { listen 80; server_name patient.yuemiaotech.com; location / { root D:/Website/Wicrecloud/chronic/patient; try_files $uri $uri/ /index. 阅读全文
posted @ 2023-03-17 14:35
IT王师傅
阅读(15)
评论(0)
推荐(0)
摘要:
CentOS7 防火墙与端口 1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop fire 阅读全文
posted @ 2023-03-17 14:31
IT王师傅
阅读(19)
评论(0)
推荐(0)
摘要:
IOC 控制反转/依赖注入:通过引入IOC容器,利用依赖关系注入的方式,实现对象之间的解耦 AOP 面向切面 Castle.Core 微服务 Netty npm javac:java的编译器,将后缀名为.java的源文件编译为后缀名为.class的Java字节码文件 jar:把一组.class文件打 阅读全文
posted @ 2023-03-17 14:30
IT王师傅
阅读(41)
评论(0)
推荐(0)
摘要:
【初始化】 git init git remote add origin xxxx git pull origin master git branch --set-upstream-to=origin/master master git pull 【提交】 git add . git commit 阅读全文
posted @ 2023-03-17 14:28
IT王师傅
阅读(18)
评论(0)
推荐(0)
摘要:
20190527 委托课程 /// 1 委托的声明、实例化和调用 /// 2 泛型委托--Func Action /// 3 委托的意义:解耦 /// 4 委托的意义:异步多线程 /// 5 委托的意义:多播委托 /// 6 事件,观察者模式 //异步调用 += 多播委托 为委托实例按顺序增加方法, 阅读全文
posted @ 2023-03-17 14:24
IT王师傅
阅读(16)
评论(0)
推荐(0)