上一页 1 2 3 4 5 6 7 ··· 24 下一页
  2022年2月20日
摘要: 1.表单 2.其它 参考:https://www.bilibili.com/video/BV1Wt411V7RC?p=10 1.表单 添加表单 import {FormsModule} from '@angular/forms'双向绑定,input例子:<input [(ngModel)]="tit 阅读全文
posted @ 2022-02-20 17:59 biind 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1.安装node.js + angular cli 2.新建个项目@angular/cli 3.基础命令 参考:https://www.bilibili.com/video/BV1Wt411V7RC?p=10 1.安装node.js + angular cli node下载地址:https://no 阅读全文
posted @ 2022-02-20 13:14 biind 阅读(147) 评论(0) 推荐(0) 编辑
  2022年1月23日
摘要: 1.安装node.js #执行完,在系统的环境变量,增加path:D:\Program Files\node_global npm config set prefix "D:\Program Files\node_global" npm config set cache "D:\Program Fi 阅读全文
posted @ 2022-01-23 21:13 biind 阅读(59) 评论(0) 推荐(0) 编辑
摘要: #配置镜像加速vi /etc/docker/daemon.json{“registry-mirrors: ["https://docker.mirors.ustc.edu.cn"]} #安装centos7docker run -it --name=mycentos centos:7 /bin/bas 阅读全文
posted @ 2022-01-23 15:50 biind 阅读(309) 评论(0) 推荐(0) 编辑
摘要: #docker容器保存为镜像docker commit mysql mysql20220123docker images 可查看刚刚保存的镜像 docker stop mysqldocker rm mysqldocker run -id --name mysql -p 3306:3306 -e MY 阅读全文
posted @ 2022-01-23 11:16 biind 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 前提:linux安装 + docker安装,参考地址; linux 安装docker和mysql - biind - 博客园 (cnblogs.com) 目录: 1.docker基本使用命令 2.docker安装mysql + tomcat + nginx 1.docker基本使用命令 #查询镜像 阅读全文
posted @ 2022-01-23 07:46 biind 阅读(76) 评论(0) 推荐(0) 编辑
  2022年1月22日
摘要: 1.let const 声明变量 let i = 1; //不可重复声明,不变量提升 const j = 100; //只读 var k = 20; console.log(i,j,k) 2.对象优化 let person = {id:1,name:'jack'} let peson2 = Obje 阅读全文
posted @ 2022-01-22 11:11 biind 阅读(40) 评论(0) 推荐(0) 编辑
  2022年1月21日
摘要: 1.linux安装ftp 2.windows安装:FileZilla 客户端 - FileZilla中文网 1.linux安装ftp #搜索可用的软件包yum list | grep ftp #安装yum install vsftpd #开启ftp服务service vsftpd start 看下是 阅读全文
posted @ 2022-01-21 21:33 biind 阅读(244) 评论(0) 推荐(0) 编辑
  2022年1月19日
摘要: 1.virtualBox 下载地址: Downloads – Oracle VM VirtualBox 2.centOS7 下载地址: Index of /centos/7.9.2009/isos/x86_64/ (163.com) CentOS Mirrors List 3.安装 a.安装virt 阅读全文
posted @ 2022-01-19 22:05 biind 阅读(38) 评论(0) 推荐(0) 编辑
  2022年1月16日
摘要: 1.服务器端 2.客户端 1.服务器端 1.依赖+配置+启动注解 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </depen 阅读全文
posted @ 2022-01-16 18:50 biind 阅读(424) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页