码迷,mamicode.com
首页 >  
搜索关键字:saltstack id hosts 认证    ( 85295个结果
修改 input 光标颜色
<input id="input" type="text" /> input { caret-color: red; } ...
分类:其他好文   时间:2021-06-04 19:13:12    阅读次数:0
vue取值及方法的操作
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
GORM如何获取查询对象的属性
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
mysql数据库中常用命令
创建表: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镜像
列出镜像: docker images REPOSITORY: 镜像所在仓库名称 TAG: 镜像版本 IMAGE ID: 镜像id CREATED: 镜像创建时间 SIZE: 镜像大小 唯一表示一个镜像: repository:tag 或者imageId 网络中搜索需要的镜像: docker sea ...
分类:其他好文   时间:2021-06-04 18:47:30    阅读次数:0
Caused by: org.yaml.snakeyaml.scanner.ScannerException: mapping values are not allowed here in 'reader', line 6, column 16:
出现这个问题主要是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
feign 调用注意事项
参考链接: 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模块]
[Django高级之Auth模块] auth模块 ←详情点击查看 1、Auth模块是什么 Auth模块是Django自带的用户认证模块: 我们在开发一个网站的时候,无可避免的需要设计实现网站的用户系统。此时我们需要实现包括用户注册、用户登录、用户认证、注销、修改密码等功能,这还真是个麻烦的事情呢。 ...
分类:其他好文   时间:2021-06-02 20:54:07    阅读次数:0
FFmpeg的H264解码源码分析:解析器
解析器主要就是解析出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
85295条   上一页 1 ... 21 22 23 24 25 ... 8530 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!