睿虎的博客

第一课

第一步:打开HBuilder X,新建项目。

创建项目

等文件下载完后,进入项目,这时如果直接运行npm run serve,会报错,别急。

打开package.json文件,找到下面的代码:

1
2
3
4
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},

修改成这样:

1
2
3
4
"scripts": {
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build"
},

此时运行npm run serve,就会看到欢迎页面了

Read more »

首先,如果要使用ES Module,你需要这样写

1
<script type="module" src="./js/main.js"></script>

或者这样:

1
2
3
<script type="module">
import print1 from "./js/module.js";
</script>

记住一定要写type="module",还有路径一定要是相对路径。

Read more »

半透明的函数长这样

1
void setWindowOpacity(qreal level);

比如要实现60%的不透明度,就这样写:

1
setWindowOpacity(0.6);

注意:

如果这样写:

1
setWindowOpacity(0);

窗体会变成全透明,这时窗体会被隐藏掉,而且无法点击窗体内的任何东西,且通过show();也无法显示出来。

建立文章草稿

1
$ hexo new draft <title>

或者

1
$ hexo n draft <title>

本机预览草稿

1
$ hexo S --draft

将草稿发布为正式文章

1
$ hexo P <filename>

或者

1
$ hexo p <filename>

其中 <filename> 为不包含 md 后缀的文章名称,包含会出错。它的原理只是将文章从 source/_drafts 移动到 source/_posts 而已。

若日后想将正式文章转为为草稿,只需手动将文章从 source/_posts 目录移动到 source/_drafts 目录即可。

SpringBoot基础教程

1.SpringBoot快速入门

2.SpringBoot使用Thymeleaf

3.SpringBoot使用MyBatis连接MySQL

4.SpringBoot使用MongoDB

5.SpringBoot使用Redis

SpringBoot干货

1.SpringBoot使用ObjectMapper

2.SpringBoot使用热部署

3.SpringBoot使用Session

Spring Cloud Alibaba基础教程

1.Spring Cloud Alibaba安装NACOS

2.Spring Cloud Alibaba项目创建

3.Spring Cloud Alibaba创建服务提供者

4.Spring Cloud Alibaba创建服务消费者

5.Spring Cloud Alibaba创建服务消费者Feign(负载均衡)

6.Spring Cloud Alibaba添加熔断机制Sentinel

[!NOTE]

本篇内容需要在上一篇的基础上进行。

请找到上一篇的项目代码,本篇在上一篇的源代码上进行编写。

本系列教程目录:https://laisc7301.github.io/blog/2024/01/29/202401290001SpringBoot%E7%B3%BB%E5%88%97%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B/

打开上一个模块的源代码(my-consumer-feign),我们继续进行。

整个项目的文件结构如下图所示:

Read more »
0%