上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 108 下一页
摘要: .NET Core 两种GC模式: Server GC / Workstation GC Server GC : 主要应用于多处理器系统,并且作为ASP.NET Core宿主的默认配置。它会为每个处理器都创建一个GC Heap,并且会并行执行回收操作。该模式的GC可以最大化吞吐量和较好的收缩性。这种 阅读全文
posted @ 2021-02-23 16:51 China Soft 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 推荐阅读:https://www.cnblogs.com/chengxs/p/10919311.html chrome内存限制 存在限制 Chrome限制了所能使用的内存极限(64位为1.4GB,32位为1.0GB),这也就意味着将无法直接操作一些大内存对象。 为何限制 Chrome之所以限制了内存 阅读全文
posted @ 2021-02-23 16:50 China Soft 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 先创建一个axios的通用对象 const request = axios.create({ timeout: 10000 }); 第一种提交form表单数据,后台正常用对象接收 let fm = new FormData(); fm.append("id",1); fm.append("name" 阅读全文
posted @ 2021-02-23 09:14 China Soft 阅读(646) 评论(0) 推荐(0) 编辑
摘要: . Lodash https://github.com/lodash/lodash 一个工具库,用得还蛮多。 2. Chalk https://github.com/chalk/chalk 给终端加上颜色的,我用的是 colors,这个还没用过 3. React Core 这个没人不知道的吧。 ht 阅读全文
posted @ 2021-01-21 22:48 China Soft 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/gisen_6/p/3750206.html 最近在学习Linux的一些命令的使用,但是很久之前装的Linux虚拟机被删掉了,又不想为了练习几个命令折腾一遍虚拟机。所以,就尝试地搜了一下,看看有没有在线的Linux模拟器可以使用,只要可以练习一下命令的 阅读全文
posted @ 2021-01-21 16:43 China Soft 阅读(2584) 评论(0) 推荐(0) 编辑
摘要: 数据可视化工具-Vue-DataV入门 Vue-DataV是干什么的? DataV是一个基于Vue的数据可视化组件库(当然也有React版本) 提供用于提升页面视觉效果的SVG边框和装饰 提供常用的图表如折线图等 飞线图/轮播表等其他组件 npm安装 $ npm install @jiaminghi 阅读全文
posted @ 2021-01-06 23:23 China Soft 阅读(2462) 评论(0) 推荐(1) 编辑
摘要: https://github.com/xswei/FlyLine 阅读全文
posted @ 2021-01-06 23:17 China Soft 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 一个2维的飞线组件 https://github.com/davidpan123/specialUi 效果图: 飞线使用: import Vue from 'vue' import {FlyLine} from 'special-ui' Vue.use(FlyLine) 组件引用: <templat 阅读全文
posted @ 2021-01-06 23:07 China Soft 阅读(263) 评论(0) 推荐(0) 编辑
摘要: https://codemirror.net/ 阅读全文
posted @ 2021-01-06 23:01 China Soft 阅读(65) 评论(0) 推荐(0) 编辑
摘要: https://www.w3cschool.cn/tryrun/runcode?lang=javascript https://ace.c9.io/build/kitchen-sink.html 背景 ACE简介: 功能实现 1、引入js 2、添加控件 3、初始化组件 4、保存时代码语法检测 5、效 阅读全文
posted @ 2021-01-06 22:47 China Soft 阅读(1858) 评论(0) 推荐(0) 编辑
上一页 1 ··· 93 94 95 96 97 98 99 100 101 ··· 108 下一页