上一页 1 2 3 4 5 6 ··· 24 下一页
  2022年4月18日
摘要: 原因:vue中给对象新增属性直接用=赋值方式,虽然可以新增属性,但是不会触发视图更新 例如定义了temp对象在操作过程中又新增了b属性 data () { return { temp: { a: '' } } } //直接赋值不会触发视图更新 this.temp.b= 24 可以新增属性,但是不会触 阅读全文
posted @ 2022-04-18 12:40 肖建锋 阅读(1059) 评论(0) 推荐(0) 编辑
  2022年3月14日
摘要: curl -XPUT -H "Content-Type:application/json" http://localhost:9200/_cluster/settings -d '{"transient":{"cluster":{"max_shards_per_node":10000}}}' 阅读全文
posted @ 2022-03-14 14:15 肖建锋 阅读(258) 评论(0) 推荐(0) 编辑
摘要: curl -XPUT -H "Content-Type:application/json" http://localhost:9200/_cluster/settings -d '{"persistent":{"action.auto_create_index":"true"}}' 阅读全文
posted @ 2022-03-14 14:14 肖建锋 阅读(694) 评论(0) 推荐(0) 编辑
摘要: [root@localhost /]# find /hytd -type f -size +100M -print0|xargs -0 du -h 阅读全文
posted @ 2022-03-14 10:31 肖建锋 阅读(150) 评论(0) 推荐(0) 编辑
  2021年9月7日
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Swiper demo</title> <meta name="viewport" content="width=device-width, initial- 阅读全文
posted @ 2021-09-07 18:17 肖建锋 阅读(47) 评论(0) 推荐(0) 编辑
  2021年7月15日
摘要: 新增磁盘的设备文件名为 /dev/vdb 大小为100GB。 #fdisk -l 查看新增的的磁盘 1、对新增磁盘进行分区 #fdisk /dev/vdb 按提示操作 p打印 n新增 d 删除 w操作生效 q退出 操作后 w #partprobe 强制让内核重新找一次分区表(更新分区表) 这里我们新 阅读全文
posted @ 2021-07-15 10:50 肖建锋 阅读(613) 评论(0) 推荐(0) 编辑
  2021年6月15日
摘要: 1、阿里云镜像仓库 阿里云提供了docker镜像仓库,可以上传私有的镜像 2、com.spotify 提供的docker构建插件 docker-maven-plugin <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven- 阅读全文
posted @ 2021-06-15 17:25 肖建锋 阅读(1178) 评论(0) 推荐(0) 编辑
  2021年6月5日
摘要: airpods连接win10,暂停后再继续播放,声音会突然变大,解决方法如下,转自win10吧 问题描述:如果你用windows连接你的蓝牙设备,无法调节音量,那么继续往下看。 问题原因:从1803版本开始后,WIN10调整了蓝牙策略,默认启用了蓝牙绝对音量,但却没有提供对应的关闭选项 1、win+ 阅读全文
posted @ 2021-06-05 19:32 肖建锋 阅读(675) 评论(0) 推荐(0) 编辑
  2021年4月13日
摘要: 切换到root用户修改配置sysctl.conf vi /etc/sysctl.conf 添加配置 vm.max_map_count=655360 执行命令 sysctl -p 阅读全文
posted @ 2021-04-13 14:01 肖建锋 阅读(245) 评论(0) 推荐(0) 编辑
  2021年4月7日
摘要: sudo docker run -m 4096M --privileged=true --memory-swap -1 -e LANG=en_US.UTF-8 -e JVM_MAXIMUM_MEMORY=4096m -host --net=host --name confluence -d -p 8 阅读全文
posted @ 2021-04-07 11:32 肖建锋 阅读(110) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页