autofac版本:3.5.2 创建容器 var builder = new ContainerBuilder(); 注册方式(这一部分的关注点在于给RegisterType、RegisterAssemblyTypes方法传递的参数,以及可以使用lambda表达式进行筛选) 1、泛型/类型注册,好处 ...
分类:
其他好文 时间:
2020-06-22 00:53:22
阅读次数:
63
animation动画简介 通过类似Flash动画的关键帧来声明一个动画,在animation属性中调用关键帧声明的动画实现一个更为复杂的动画效 一、transform(转换动画、直接动画) rotate(旋转)包含三种状态,x、y、z三轴的变化, rotatex、rotatey、rotatez(默 ...
分类:
Web程序 时间:
2020-06-21 19:34:44
阅读次数:
480
字符串显示: @app.route('/') def hello_world(): return 'Hello World!' json显示: 不导入jsonify的处理: @app.route("/json") def json(): import json data = { "a":"b" } ...
分类:
其他好文 时间:
2020-06-21 15:34:55
阅读次数:
48
名称: 建造者模式(Builder Pattern) 问题: Separate the construction of a complex object from its representation so that the same construction process can create ...
分类:
其他好文 时间:
2020-06-21 12:12:42
阅读次数:
51
vscode flask 热加载配置修改launch 文件配置热加载。"env": { "FLASK_APP": "D:\\flask\\flash-cards-remember\\computer-science-flash-cards\\flash_cards.py", "FLASK_ENV":... ...
分类:
其他好文 时间:
2020-06-21 11:47:38
阅读次数:
70
1、根文件系统rootfs制作jffs2.img镜像 Flash支持jffs2文件系统格式,所以需要使用此该rootfs制作jffs2文件系统镜像。 //使用工具 sudo apt-get install mtd-utils 操作步骤 mkdir rootfs //创建目录 sudo tar xzv ...
分类:
其他好文 时间:
2020-06-20 11:06:46
阅读次数:
87
新建.net core web的api项目(.net core版本3.1) 在Value控制器下写一个模拟登录接口,进行简单的名字和密码验证即可。验证通过后会返回一个token。 1 [HttpGet] 2 [Route("api/login")] 3 public IActionResult Lo ...
分类:
Web程序 时间:
2020-06-20 01:15:00
阅读次数:
132
我在使用BeautifulSoup的时候对于html的解析器选择了lxml soup = BeautifulSoup(r.text, "lxml") 然后就报错了,Baidu和Google后都没有找到太满意的答案,他们的做法有的是将解析器更改成原生的Python解析器,还有的就是一些对我没有太大帮组 ...
分类:
其他好文 时间:
2020-06-19 13:36:47
阅读次数:
47
前后端分离 vue + asp.net core WebApi 项目部署到linux Nginx服务器的发布配置过程,asp.net core 项目只介绍跨域配置部分,asp.net core 环境搭建以及项目发布请参阅其他博文。 首先是vue反向代理配置这个在开发过程中应该已经配置完成,发布服务器 ...
分类:
Web程序 时间:
2020-06-18 19:36:22
阅读次数:
97
注意:首先安装JWT程序包 using System;using System.Collections.Generic;using System.Linq;using System.Web; using JWT;using JWT.Algorithms; //加密算法using JWT.Builde ...
分类:
其他好文 时间:
2020-06-18 16:04:10
阅读次数:
75