#include "stdafx.h" #include <iostream> #include <string> #include <map> #include <list> #include <queue> #include <stack> typedef struct forest { std ...
分类:
其他好文 时间:
2020-05-04 19:35:37
阅读次数:
47
需求:通过页面点击完成简单的投票系统功能。 相关文件: 设计思路: 1、前端:提供可以投票的入口。查询的入口。(前端不做数据处理,只做展示) 使用<a> </a> 完成超链接的接收数据 设置超链接的按钮:提供投票和查询功能 2、后端:数据存储:可以通过txt文件做简单的数据存储。提供新增数据的接口, ...
分类:
其他好文 时间:
2020-05-04 15:23:14
阅读次数:
74
代码: import requestsm = "https://pc.yiyouliao.com/msn/article.html?recId=e2d8f7ea299745d8a1d46a6adeb35c5f_s&infoId=II01KDO8ABM0ND8"r = requests.get(m)r ...
分类:
其他好文 时间:
2020-05-03 16:18:00
阅读次数:
51
用命令行的方式启动.netcore web项目 首先进入项目文件编译后的bin目录,比如我的项目编译后的目录为 G:\Project\Demo1\demo1\demo1.xTwoMvc\bin\Debug\netcoreapp3.1 ,进入这个目录,打开cmd窗口。 命令行启动.netcore项目的 ...
分类:
Web程序 时间:
2020-05-03 12:49:33
阅读次数:
665
D:\mycache;SRV*D:\mycache*http://msdl.microsoft.com/download/symbols"C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\windbg.exe" -y SRV*D:\mycach ...
分类:
其他好文 时间:
2020-05-02 21:11:14
阅读次数:
78
debounce(fn,delay=500) { let timer = null return function(){ if(timer){ clearTimeout(timer) } timer = setTimeout(fn,delay) } } ...
分类:
Web程序 时间:
2020-05-02 14:38:53
阅读次数:
52
依赖: <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.10.0</version> </dependency> Example: public class ...
分类:
Web程序 时间:
2020-05-02 12:14:06
阅读次数:
62
一、安装 0.国内镜像 首先,推荐两个地方,也就是国内镜像来下载源码,强烈建议你看完,因为都一样的 科大源、清华源 注意事项:如果你不编译源代码,装源代码的磁盘格式,是任何格式都可以,但是你如果要在MacBook上编译源代码,那必须把磁盘格式变成Mac的日志格式,区分大小写的,也就是这个格式: 1. ...
分类:
移动开发 时间:
2020-05-02 10:16:32
阅读次数:
143
sudo vim /etc/apt/sourcellist deb http://mirrors.163.com/ubuntu/ precise main universerestricted multiverse deb-src http://mirrors.163.com/ubuntu/ pre ...
分类:
其他好文 时间:
2020-04-30 19:06:15
阅读次数:
103
Web项目复制到lib下的jar包不自动加载 打开项目的Java source目录,发现没有web app libraries目录 解决: 打开项目源码,打开.classpath文件,内容如下 <classpath> <classpathentrykind="src" path="src"/> <c ...
分类:
编程语言 时间:
2020-04-30 13:19:19
阅读次数:
273