SQL单行拆分多行 不需要自建自增的辅助表,Mysql自带help_topic可以使用; SELECT SUBSTRING_INDEX( SUBSTRING_INDEX( target_column, ',', b.help_topic_id + 1 ), ',', -1 ) AS coop_bra ...
分类:
数据库 时间:
2020-06-22 17:10:46
阅读次数:
86
1. treeStore的C#类对象 public class ExtTreeNode { string id; string text; string icon; string url; bool leaf; bool expanded; List<ExtTreeNode> children = ...
分类:
其他好文 时间:
2020-06-22 14:54:06
阅读次数:
73
一、错误提示 二、原因 要克隆的文件太大 三、解决方法 1、第一种方法:少clone一些,每个文件只取最近一次提交,不是整个历史版本 git clone https://github.com/xx/xx.git --depth 1 2、第二种方法:加大缓存区 git config --global ...
分类:
Web程序 时间:
2020-06-22 13:26:39
阅读次数:
134
问题出现在pyhon 3.8.3安装模块的场景下pip install XXX,出现以下错误: error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://vis ...
分类:
编程语言 时间:
2020-06-22 13:19:48
阅读次数:
69
HINTERNET hNet = ::InternetOpen(L"Internet Explorer", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); if (hNet == NULL) { MessageBoxA(NULL, "hNet is NUL ...
冒泡排序:比较相邻的两个数,如果第一个数比第二个数大,则两数交换。 选择排序:每次从所有数据中,选出最小的数据下标,然后和自定的最小索引交换。 package j_6_21; import java.util.Arrays; public class Text01 { public static v ...
分类:
编程语言 时间:
2020-06-22 13:02:37
阅读次数:
40
centOS安装nginx的常见问题 ./configure:error:c compile cc is not found 当执行命令 ./configure 编译安装nginx时报error:c compile cc is not found 解决: 执行命令 yum -y install gc ...
分类:
其他好文 时间:
2020-06-22 12:24:00
阅读次数:
55
2020-06-19 10:36:40.117 [dd47dcbc-c72f-4791-8c4f-ef4019382537] ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServle ...
分类:
编程语言 时间:
2020-06-22 10:56:08
阅读次数:
236
什么是爬虫框架 说这个之前,得先说说什么是框架: 是实现业界标准的组件规范:比如众所周知的MVC开发规范 提供规范所要求之基础功能的软件产品:比如Django框架就是MVC的开发框架,但它还提供了其他基础功能帮助我们快速开发,比如中间件、认证系统等 框架的关注点在于规范二字,好,我们要写的Pytho ...
分类:
编程语言 时间:
2020-06-22 10:52:35
阅读次数:
62
本来很简单的一个功能怎么导出都是乱码。 添加 error_reporting(E_ALL ^ E_NOTICE) ini_set("display_errors",'"on") PHP提示: Cannot modify header information - headers already sen ...
分类:
Web程序 时间:
2020-06-22 01:52:02
阅读次数:
92