ConfigureAppConfiguration((hostingContext, config) => { config.AddCryptoFile(Path.Combine(AppContext.BaseDirectory, "appsettings.json.crypto"), true); ...
分类:
Web程序 时间:
2021-05-24 10:20:52
阅读次数:
0
SpeechContest.cpp 1 #include<iostream> 2 #include<cstdlib> 3 using namespace std; 4 #include "speechManager.h" 5 #include<map> 6 #include "speaker.h" ...
分类:
其他好文 时间:
2021-05-24 10:20:22
阅读次数:
0
编译环境 x86_64-w64-mingw32 gcc version 8.1.0 操作系统 window 10 X64 code #include <stdio.h> #define uint8_t unsigned char #define uint32_t unsigned int int m ...
分类:
其他好文 时间:
2021-05-24 10:20:00
阅读次数:
0
== MalformedByteSequenceException: 1字节的 UTF-8 序列的字节 1 无效 记住,每次修改了配置之后都 clean 一下,把 target 删除 == 去掉 pom.xml 中的 properties <properties> <maven.compiler.s ...
分类:
数据库 时间:
2021-05-24 10:16:57
阅读次数:
0
一、pycharm字体放大的设置 File —> Settings —> Keymap —>在搜寻框中输入:increase —> Increase Font Size(双击) —> 在弹出的对话框中选择Add Mouse Shortcut 在弹出的对话框中同时按住ctrl键和鼠标滚轮向上滑。 二、 ...
分类:
其他好文 时间:
2021-05-24 10:15:27
阅读次数:
0
[...new Set(arr)] 解析:ES6 提供了新的数据结构 Set。它类似于数组,但是成员的值都是唯一的,没有重复的值。 Set本身是一个构造函数,用来生成 Set 数据结构。 const s = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => ...
分类:
编程语言 时间:
2021-05-24 10:13:29
阅读次数:
0
JSON 前后端分离时代,后端部署后端,提供接口;前端独立部署。渲染后端数据。 首先要解决的问题就是前后端之间如何交流,如果传递数据,那么就需要一种约定,一种数据交换格式。 JavaScript对象和JSON对象之间的转化 <script type="text/javascript"> //编写一个 ...
分类:
编程语言 时间:
2021-05-24 10:12:55
阅读次数:
0
这篇文章主要介绍了Powershell 之批量获取文件大小的实现代码 效果图: 核心代码: $startFolder = "D:\" $colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} ...
分类:
系统相关 时间:
2021-05-24 10:08:31
阅读次数:
0
ps=`ps -efl|grep redis|grep -v $0|grep -v grep|wc -l` if [ $ps -eq 0 ]; then rm -f /www/server/redis/redis.pid echo -e "\n$(date '+%Y-%m-%d %H:%M:%S') ...
分类:
其他好文 时间:
2021-05-24 10:05:33
阅读次数:
0
require: 运行时调用,理论上可以运用在代码的任何地方, import:编译时调用,必须放在文件开头 懒加载:component: resolve => require(['@/view/index.vue'], resolve) 用require这种方式引入的时候,会将你的component ...
分类:
其他好文 时间:
2021-05-24 10:02:52
阅读次数:
0