<input id="input" type="text" /> input { caret-color: red; } ...
分类:
其他好文 时间:
2021-06-04 19:13:12
阅读次数:
0
1.路由传值: 传值:this.$router.push({ path: '/a', query: { id:1, age:18 } }) //如点击时触发 接收:this.$route.query.id || this.$route.query.age 2.父组件找子组件拿值及其方法: 父: im ...
分类:
其他好文 时间:
2021-06-04 19:08:41
阅读次数:
0
package main import ( "fmt" "gorm.io/driver/mysql" "gorm.io/gorm" "time" ) type User struct { ID int Name string CreatedTime time.Time } func main() { ...
分类:
其他好文 时间:
2021-06-04 19:06:12
阅读次数:
0
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:
数据库 时间:
2021-06-04 18:53:42
阅读次数:
0
列出镜像: docker images REPOSITORY: 镜像所在仓库名称 TAG: 镜像版本 IMAGE ID: 镜像id CREATED: 镜像创建时间 SIZE: 镜像大小 唯一表示一个镜像: repository:tag 或者imageId 网络中搜索需要的镜像: docker sea ...
分类:
其他好文 时间:
2021-06-04 18:47:30
阅读次数:
0
出现这个问题主要是yml文件的语法出现了问题。 yml基本语法如下: 大小写敏感 冒号后面要有空格 只允许使用空格缩进,表示层级关系 相同层级的元素需要左侧对齐 # 表示注释,从这个字符一直到行尾 我遇到这个错误是因为缩进问题:第6行的uri应该与id左对齐,uri下面几句话也要相应左移: spri ...
分类:
移动开发 时间:
2021-06-04 18:45:56
阅读次数:
0
1、查看端口被占用的进程: netstat -ano |findstr "端口号" 查看“4300”端口被占用的进程: 2、kill对应的进程: taskkill /f /t /im "进程id或者进程名称" 3、如果因为权限问题导致失败。请以管理员权限运行cmd ...
分类:
系统相关 时间:
2021-06-03 18:19:08
阅读次数:
0
参考链接: https://blog.csdn.net/wahaha13168/article/details/81211002 https://www.cnblogs.com/merryyou/p/11670171.html feign 接口返回流 服务提供者 @GetMapping("/{id} ...
分类:
其他好文 时间:
2021-06-02 20:54:56
阅读次数:
0
[Django高级之Auth模块] auth模块 ←详情点击查看 1、Auth模块是什么 Auth模块是Django自带的用户认证模块: 我们在开发一个网站的时候,无可避免的需要设计实现网站的用户系统。此时我们需要实现包括用户注册、用户登录、用户认证、注销、修改密码等功能,这还真是个麻烦的事情呢。 ...
分类:
其他好文 时间:
2021-06-02 20:54:07
阅读次数:
0
解析器主要就是解析出NALU,以及解析一些SPS、PPS等信息,下面分析一下ff_h264_parser AVCodecParser ff_h264_parser = { .codec_ids = { AV_CODEC_ID_H264 }, .priv_data_size = sizeof(H264 ...
分类:
其他好文 时间:
2021-06-02 20:50:21
阅读次数:
0