Nacos学习

nacos学习 配置 xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.4.RELEASE</version> <relativePath/> </parent> <properties> <spring-cloud.version>Finchley.SR2</spring-cloud.version> <spring-cloud-alibaba.version>0.2.0.RELEASE</spring-cloud-alibaba.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>${spring-cloud-alibaba.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> https://www.bilibili.com/video/BV1LQ4y127n4?p=18 Nacos 可以

nextjs学习

参考学习视频 千峰的视频 利用 props.children 代替原来路由的写法

Pd 设置界面字体

设置面板字体 点击 工具,常规选项, 设置字体大小 设置 preview sql字体 工具-> 常规选项 -> 字体 -> Code editor -> 设置大小

PHP 变量

PHP 变量学习 学习教程 1 2 3 4 5 6 <?php $s= "hello world"; echo "s -> $s"; echo $abc; 注意: 语句后面要写分号 变量定义就写 $ 开头 单引号不解析变量,双引号解析变量 变量类型定义 整型 浮

PHP 链接数据库

PHP 链接数据库 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 <?php $link = mysqli_connect('localhost','test_php','test_php'); //var_dump( $link); if (!$link ) { exit('数据库连接失败'

Powerdesigner的几个选项

Power designer 几个选项介绍 P即primary,主键的意思 F即foreign key,外键的意思 M即mandatory,强制不可为空的意思

react router 管理

父路由 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

react 集成 markdown编辑器

集成markdown编辑器 官网示例 1 2 yarn add react-mde yarn add showdown textarea 根据内容自动扩充 【不需要用户手动拉】 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
T