umi-ui是在umi基础上扩展的umi-ui插件,主要是用于快速开发后台管理系统。 umi-ui启动顺序 1. node ./scripts/ui.js 2. **打包**3个ui插件: plugin-ui-blocks/plugin-ui-tasks/preset-ui 3. 运行ui界面 ui ...
分类:
其他好文 时间:
2021-04-20 14:02:58
阅读次数:
0
问题描述 在Azure媒体服务(AMS: Azure Media Service)中,不管是点播,直播都需要下载manifest文件。而文件中有一段【<c t="6161940" d="749970" r="2" n="0" />】内容,这些内容如何解释呢? <?xml version="1.0" ...
分类:
其他好文 时间:
2021-04-20 14:02:06
阅读次数:
0
LeetCode 题解 | 42.接雨水 42.接雨水 接雨水 - 力扣(LeetCode)?leetcode-cn.com 题目描述 给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。 上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] ...
分类:
其他好文 时间:
2021-04-19 16:00:11
阅读次数:
0
1.1 Elasticsearch 是什么 The Elastic Stack, 包括 Elasticsearch、Kibana、Beats 和 Logstash(也称为 ELK Stack)。能够安全可靠地获取任何来源、任何格式的数据,然后实时地对数据进行搜索、分析和可视化。Elaticsearc ...
分类:
其他好文 时间:
2021-04-19 15:27:46
阅读次数:
0
强烈建议 参考:https://jakearchibald.com/2015/tasks-microtasks-queues-and-schedules/?utm_source=html5weekly 每个“线程”都有自己的事件循环,因此每个Web工作者都有自己的事件循环,因此可以独立执行,而同一源 ...
分类:
其他好文 时间:
2021-04-19 15:12:26
阅读次数:
0
今天在navicat中编写sql操作oracle数据库时进行了误操作,可以使用如下语句进行回退回滚,因为navicat是自动提交事务的,而rollback没法回滚。 oracle回退 --开启闪退 alter table TB_MENU_INFO enable row movement; --闪退到 ...
分类:
数据库 时间:
2021-04-19 14:34:24
阅读次数:
0
import numpy as np a = np.array([i for i in range(5)]) b = np.array([i for i in range(5, 10)]) print('a:', a) print('b:', b) c = np.stack([a,b], axis= ...
分类:
编程语言 时间:
2021-04-16 12:25:35
阅读次数:
0
springboot+mybatis+druid 多数据源 1. 创建maven项目,引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifact ...
分类:
数据库 时间:
2021-04-16 11:44:35
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content ...
分类:
其他好文 时间:
2021-04-15 12:24:53
阅读次数:
0
sys.exc_info() 获取异常 import sys try: raise ValueError('this is a exp') except Exception as ex: ex_type, ex_val, ex_stack = sys.exc_info() print(ex_type ...
分类:
编程语言 时间:
2021-04-14 12:39:26
阅读次数:
0