码迷,mamicode.com
首页 > 2020年06月28日 > 全部分享
文件下载
获取下载文件的url axios({ url: 'xxxx', data: {id:'xxx'}, headers:{token:'xxx'} }).then(res => { let url = res.data.url downloadFile(url) }) downloadFile(url) ...
分类:其他好文   时间:2020-06-28 09:30:35    阅读次数:58
分布式架构进阶:如何应对高并发的用户请求
本文已收录GitHub,更有互联网大厂面试真题,面试攻略,高效学习资料等互联网应用以及云计算的普及,使得架构设计和软件技术的关注点从如何实现复杂的业务逻辑,转变为如何满足大量用户的高并发访问请求。一个简单的计算处理过程,如果一旦面对大量的用户访问,整个技术挑战就会变得完全不同,软件开发方法、技术团队组织、软件的过程管理都会完全不同。以新浪微博为例,新浪微博最开始只有两个工程师,一个前端,一个后端,
分类:其他好文   时间:2020-06-28 09:30:23    阅读次数:95
HTML5实现DTMF(电话拨号按键信号)解码、编码,代码简单易于移植
DTMF(Dual Tone Multi Frequency) 双音多频,由高频群和低频群组成,高低频群各包含4个频率;两个频率波形合成按键信号(0-9 * # A B C D)。 SIP中检测DTMF信号的方法:SIPINFO、RFC2833、INBAND;至于这些是什么我这个外行纯属热闹;拿两个 ...
分类:Web程序   时间:2020-06-28 09:30:07    阅读次数:183
IntelliJ IDEA 配置《算法》(第四版)
红皮的算法一书,内部代码的实现调用了作者写的一个包。为了运行书内代码,需要配置相应的环境。 准备 网站:https://algs4.cs.princeton.edu/code/ 工具:IntelliJ IDEA 2019.3 Java版本:jdk8 Step 1 下载algs4.jar Step 2 ...
分类:编程语言   时间:2020-06-28 09:29:48    阅读次数:93
static那些事
static那些事 当与不同类型一起使用时,static关键词具有不同的含义。 静态变量:函数中的变量、类中的变量 静态类的成员:类对象和类中的函数 静态变量 函数中的静态变量 当变量声明为static时,空间将在程序的生命周期内分配。即使多次调用该函数,静态变量的空间也只分配一次,前次调用的变量值 ...
分类:其他好文   时间:2020-06-28 09:29:30    阅读次数:58
《你不知道的JavaScript》【6】——原型
...
分类:编程语言   时间:2020-06-28 09:29:10    阅读次数:53
[Python]哈夫曼编码
生成树 from heapq import heapify, heappush, heappop from itertools import count """ https://www.cnblogs.com/xuchunlin/p/7247346.html """ def huffman(node ...
分类:编程语言   时间:2020-06-28 09:28:55    阅读次数:57
PTA 乙级 1010 一元多项式求导 (25分)
今天的题虽然简单,但是有个细节一定要注意,先放代码: 1 #include<iostream> 2 #include<vector> 3 using namespace std; 4 5 int main() { 6 int n = 0; 7 vector<int> num; //vector动态处 ...
分类:其他好文   时间:2020-06-28 09:28:34    阅读次数:42
0345. Reverse Vowels of a String (E)
Reverse Vowels of a String (E) 题目 Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hello" Out ...
分类:其他好文   时间:2020-06-28 09:27:54    阅读次数:41
[LeetCode] 279. Perfect Squares
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Example 1: Input: n = 12 O ...
分类:其他好文   时间:2020-06-28 09:27:41    阅读次数:56
C有趣的else if 变体
试了一下,下面👇的代码都是可以完美运行在Xcode上的,说明这些基本操作都是支持的,只是我们不知道而已... int x = 90; if (x > 100) { //... } else switch(x){ case 90:{ NSLog(@"x = %d",x); }break; } if ...
分类:其他好文   时间:2020-06-28 09:27:23    阅读次数:40
0343. Integer Break (M)
Integer Break (M) 题目 Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. R ...
分类:其他好文   时间:2020-06-28 09:27:07    阅读次数:43
技术学习博10
第十七周 补校园导游程序实践的删除和查询最短距离功能 删除景点 1 /*8删除景点*/ 2 void DelJD(SchoolMap *G){ 3 int i,j,dd,jishu=0; 4 5 printf("\n\t\t目前已有的景点:"); 6 for(i=1;i<=G->Vexnum;i++ ...
分类:其他好文   时间:2020-06-28 09:26:45    阅读次数:72
01-Mybatis是什么
Mybatis 是什么 MyBatis 本是 Apache 的一个开源项目——iBatis,2010 年这个项目由 Apache Software Foundation 迁移到了 Google Code,并且改名为 MyBatis。 MyBatis 是一个基于 Java 的持久层框架。MyBatis ...
分类:其他好文   时间:2020-06-28 09:26:00    阅读次数:44
Docker 网络:container模式
本文转自https://www.freeaihub.com/article/container-module-in-docker-network.html,该页可在线运行案例 在前一篇Docker 网络:host模式中我们已经介绍Docker网络模型中的host模式。本节将对Docker网络模型中的 ...
分类:其他好文   时间:2020-06-28 09:25:46    阅读次数:53
excel表格时间戳转时间格式
https://jingyan.baidu.com/article/63acb44afb1e2561fcc17e3f.html 单击要获得北京时间的那一列,右键,选择【设置单元格格式】,在弹出的窗口中,左侧选择 【日期】,右侧选择你想要的时间格式,点击确定。 选中其中一个单元格,输入公式 =(A2+ ...
分类:其他好文   时间:2020-06-28 09:25:35    阅读次数:64
发现个利器--FastAPI(Py3.6+版本)
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i ...
分类:Windows程序   时间:2020-06-28 09:25:20    阅读次数:83
1000条   上一页 1 ... 47 48 49 50 51 52 53 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!