express是一个基于node的极其轻量级的框架,用于快速开发web及移动端应用 首先,电脑中如果没有express全局环境,需要指令 npm install express -g 进行全局环境的安装。如果想用express脚手架创建项目,也要用指令 npm install express-gen ...
分类:
其他好文 时间:
2021-06-02 20:18:55
阅读次数:
0
// 基于对象封装一个集合 function Set() { // 属性 this.items = {}; // 方法 // add 往集合中添加元素 Set.prototype.add = function (value) { // 先判断是否有这个元素 if (this.has(value)) ...
分类:
Web程序 时间:
2021-06-02 20:02:42
阅读次数:
0
目录 莫比乌斯函数 莫比乌斯反演 莫比乌斯函数 首先,我们先介绍一下莫比乌斯函数 \(\mu(x)\) 设 \(x\) 质因数分解式为:\(x = \prod_{i=1}^k p_i^{\alpha_i}\) $$\mu(x)= \begin 0& \exists \alpha_i \geqslan ...
分类:
其他好文 时间:
2021-06-02 19:55:09
阅读次数:
0
都知道解决 外边距塌陷 有多种方法 其中一种 是给父盒子加个overflow:hiden;例如 <style> p { color: #f55; background: #fcc; width: 200px; line-height: 100px; text-align:center; margin ...
分类:
其他好文 时间:
2021-06-02 19:54:48
阅读次数:
0
1.Prometheus简介 Prometheus受启发于Google的Brogmon监控系统(相似的Kubernetes是从Google的Brog系统演变而来),从2012年开始由前Google工程师在Soundcloud以开源软件的形式进行研发,并且于2015年早期对外发布早期版本。2016年5 ...
分类:
其他好文 时间:
2021-06-02 19:52:46
阅读次数:
0
本文主要介绍Python中pip在Windows、Mac和Linux上安装方法。PIP是一个递归的缩写,代表“PIP Installs Packages”或“Preferred Installer Program”。它是一个命令行实用程序,允许您使用简单而直接的命令安装,重新安装或卸载PyPI包:p ...
分类:
编程语言 时间:
2021-06-02 19:50:31
阅读次数:
0
发现打包失败 测试发现 npm run build 打包失败 发现问题1 node_modules 库 没装 rm -rf node_modules 进行 npm install 安装失败 发现linux下网不通,有代理设置 解决网络问题,然后网通了 npm install 安装还是失败 安装 cn ...
分类:
系统相关 时间:
2021-06-02 19:41:35
阅读次数:
0
补题链接:Here A - Chinchirorin 给出 \(a,b,c\) 三个正整数,现请打印各种情况的答案: \(a=b=c\) ,输出一个即可 \(a = b\ and\ a != c\) 或者 \(a = c\ and\ a != b\) 或者 \(b = c\ and\ a != b\ ...
分类:
其他好文 时间:
2021-06-02 19:08:52
阅读次数:
0
常见的abap代码备份及还原工具有:Mass Download; SAP Link和 abapGit https://docs.abapgit.org/guide-install.html 登陆语言请使用 EN 下载单机版本, 地址:https://raw.githubusercontent.com ...
分类:
其他好文 时间:
2021-06-02 19:05:31
阅读次数:
0
1.引入sortablejs文件 import Sortable from 'sortablejs' 2.代码 合理运用splice方法,删掉旧索引的对象,再以新索引把旧对象重新加回去 methods: { async getList() { this.listLoading = true cons ...
分类:
编程语言 时间:
2021-06-02 18:57:28
阅读次数:
0