摘要: <template> <el-row class="mb-4"> <el-button @click="open" type="primary" show-confirm-button="false">Click</el-button> </el-row> </template> <script s 阅读全文
posted @ 2022-10-12 20:41 ☆のLueng☆ 阅读(762) 评论(0) 推荐(0) 编辑
摘要: 虚拟机安装Centos7不多介绍,太多的文章可以参考了,这里主要记下安装MySql的过程。 登录Centos系统,并保证是以root用户登陆的。 安装wget yum install wget 查看一下系统版本 cat /etc/centos-release 下载mysql安装包(以下地址对应的是C 阅读全文
posted @ 2021-10-29 17:02 ☆のLueng☆ 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 第一章 开发体验 一、Asp.Net Core应用程序 使用CLI创建控制台应用程序 dot new console -n helloworld 编辑项目文件 <ItemGroup> <FrameworkReference include = "Microsoft.AspNetCore.App">< 阅读全文
posted @ 2020-11-06 17:18 ☆のLueng☆ 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Asp.Net Core 内置IOC容器的理解 01.使用IOC容器的好处 对接口和实现类由原来的零散式管理,到现在的集中式管理。 对类和接口之间的关系,有多种注入模式(构造函数注入、属性注入等)。 对实现类的声明周期进行了统一管理(创建、释放、和监控)。 对类的依赖有编译时到运行时。 02.实际使 阅读全文
posted @ 2019-12-01 17:22 ☆のLueng☆ 阅读(888) 评论(0) 推荐(2) 编辑
摘要: Aso.Net Core 的配置系统Configuration ​ 1.以前的配置文件格式为XML ​ 2.新版的配置文件格式支持 { json ,xml, ini, memory, command, env..... } 01.Json文件的弱类型方式读取 Json文件 【Microsoft.Ex 阅读全文
posted @ 2019-11-30 20:25 ☆のLueng☆ 阅读(3177) 评论(1) 推荐(2) 编辑