腾讯云-ASP.NET Core+Mysql+Jexus+CDN上云实践.md Opening a Tencent Cloud Server and MySQL Key Points: Usage of ASP.NET Core and Entity Framework Core Installa[......] 继续阅读

2019年12月15日 0条评论 1125点热度 0人点赞 痴者工良 阅读全文

腾讯云-ASP.NET Core+Mysql+Jexus+CDN上云实践.md 开通腾讯云服务器和Mysql 知识点: ASP.NET Core和 Entity Framework Core的使用 Linux 下 安装和配置 Mysql 数据库 通过实体生成数据库 简单 Linux 命令和 She[......] 继续阅读

2019年12月15日 0条评论 2995点热度 0人点赞 痴者工良 阅读全文

Collaborating with Colleagues on a Front-End and Back-End Decoupled Project I've been working with colleagues on a decoupled front-end and back-end pr[......] 继续阅读

2019年12月15日 0条评论 988点热度 1人点赞 痴者工良 阅读全文

[TOC] 跟同事合作前后端分离项目,自己对 WebApi 的很多知识不够全,虽说不必要学全栈,可是也要了解基础知识,才能合理设计接口、API,方便与前端交接。 晚上回到宿舍后,对 WebApi 的知识查漏补缺,主要补充了 WebAPi 的一些方法、特性等如何与前端契合,如何利用工具测试 API 、[......] 继续阅读

2019年12月15日 0条评论 4035点热度 1人点赞 痴者工良 阅读全文

目录  一,工欲善其事,必先利其器 二,开机必备 三,更新 apt-get 源与软件搜索 四,安装 .NET Core 五,文件传输 六,搜索与安装软件 七,常见缺少的 xxx.so 八,小技巧与工具 一,工欲善其事,必先利其器 1,下载系统 树莓派官方下载系统地址 https://www[......] 继续阅读

2019年12月15日 1条评论 3912点热度 0人点赞 痴者工良 阅读全文

Table of Contents  1. To do a good job, one must first sharpen one's tools 2. Essentials for Startup 3. Updating apt-get sources and software sea[......] 继续阅读

2019年12月15日 1条评论 445点热度 0人点赞 痴者工良 阅读全文

1,Nginx 的 配置文件 Nginx 可以配置反向代理、负载均匀等, 其默认配置文件名为 nginx.conf 。 一般存放于 /你的安装目录/nginx/conf  下 Nginx 加载配置信息,可以把所有的配置都放进 nginx.conf 文件,也可以根据站点分[......] 继续阅读

2019年12月15日 2条评论 4853点热度 1人点赞 痴者工良 阅读全文

1. Nginx Configuration File Nginx can be configured for reverse proxying, load balancing, etc. Its default configuration file is named nginx.conf. Gen[......] 继续阅读

2019年12月15日 2条评论 4775点热度 1人点赞 痴者工良 阅读全文

SQLIte 操作方便,简单小巧,这里笔者就不再过多介绍,感兴趣可以到以下博文 https://blog.csdn.net/qq_31930499/article/details/80420246  文章介绍创建ASP.NET Core 程序,创建模型、上下文,生成数据库,对数据库增删查改[......] 继续阅读

2019年12月15日 1条评论 3474点热度 0人点赞 痴者工良 阅读全文

SQLite is convenient to use, simple and compact. The author will not elaborate further here; those interested can refer to the following blog. https:/[......] 继续阅读

2019年12月15日 1条评论 828点热度 0人点赞 痴者工良 阅读全文

笔者的前端文件如下   笔者增加Bootstrap 4 和 FontAwersome(字体图标),因为Bootsrap 4已经不再包含图标了。 ASp.Net Core 中,通常在 _Layout.cshtml 文件设置全局css、js文件, 其中有两个标签 <environm[......]继续阅读

2019年12月15日 0条评论 3538点热度 0人点赞 痴者工良 阅读全文

The author's front-end files are as follows:   The author adds Bootstrap 4 and Font Awesome (icon fonts) because Bootstrap 4 no longer includes[......] 继续阅读

2019年12月15日 0条评论 3544点热度 0人点赞 痴者工良 阅读全文

ASP.NET Core 中,可以在静态目录添加文件,直接访问就可以下载。但是这种方法可能不安全,也不够灵活。 我们可以在 Controller 控制器中 添加 一个 Action,通过此Action,即可访问服务器的任何文件。 Action 格式     public FileResult D[......]继续阅读

2019年12月15日 0条评论 3101点热度 1人点赞 痴者工良 阅读全文

In ASP.NET Core, files can be added to a static directory for direct download. However, this method may not be secure or flexible enough. We can add a[......] 继续阅读

2019年12月15日 0条评论 452点热度 1人点赞 痴者工良 阅读全文

ASP.NET Core 程序启动过程如下 目录  Startup 类 Configure() 方法 中间件 使用中间件 Configure 方法 的参数 IApplicationBuilder Extension Methods(拓展方法)--微软提供的中间件 1, Startup[......] 继续阅读

2019年12月15日 2条评论 3256点热度 0人点赞 痴者工良 阅读全文

The startup process of ASP.NET Core applications is as follows Table of Contents  Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读

2019年12月15日 2条评论 3283点热度 0人点赞 痴者工良 阅读全文

笔者没有学 ASP.NET,直接学 ASP.NET Core ,学完 ASP.NET Core MVC 基础后,开始学习 ASP.NET Core 的运行原理。发现应用程序有一个非常主要的 “传导体” HttpContext 。 赶忙写一下笔记先。 目录 &ldqu[......] 继续阅读

2019年12月15日 0条评论 3545点热度 0人点赞 痴者工良 阅读全文

The author did not study ASP.NET, but went directly to learn ASP.NET Core. After finishing the basics of ASP.NET Core MVC, I began to learn about the[......] 继续阅读

2019年12月15日 0条评论 3998点热度 0人点赞 痴者工良 阅读全文

public class ValuesController : ControllerBase { // GET api/values/123 [HttpGet("{id}")] public ActionResult<string> Get(i[......]继续阅读

2019年12月14日 0条评论 416点热度 0人点赞 痴者工良 阅读全文

public class ValuesController : ControllerBase { // GET api/values/123 [HttpGet("{id}")] public ActionResult<string> Get([......]继续阅读

2019年12月14日 0条评论 3767点热度 0人点赞 痴者工良 阅读全文