问题: 解决办法: 把libs/libcurl 的路径改成${CMAKE_CURRENT_SOURCE_DIR}/libs 解决! ...
分类:
其他好文 时间:
2020-06-10 16:03:23
阅读次数:
154
下载tomcat yum install java -y cd /opt/ wget http://mirror.bit.edu.cn/apache/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.zip unzip apache-tomcat-8. ...
分类:
其他好文 时间:
2020-06-10 13:24:48
阅读次数:
64
绑定json 配置文件 var builder = new ConfigurationBuilder() .SetBasePath(Directory.GetCurrentDirectory()) .AddJsonFile("appsettings.json") .AddJsonFile("apps ...
分类:
Web程序 时间:
2020-06-09 23:23:44
阅读次数:
87
现在处于项目的收尾阶段,主要写一些测试用例。但是测试用例一直不通过,报错为 could not find class, No class definition found 这个class是ItTokenMagnager,该工程使用Springboot框架,Apollo配置中心。我一直认为可能是跑测试 ...
分类:
其他好文 时间:
2020-06-09 22:04:17
阅读次数:
61
###这错误就尼玛离谱 在python安装包的时候出现,吐了 ###解决方法 find / -name lsb_release 找到这个命令的目录 rm -rf /usr/bin/lsb_release 目录按找到的为准 解决,记录一下 ...
分类:
其他好文 时间:
2020-06-09 20:50:40
阅读次数:
86
#coding=utf-8 from selenium import webdriver import time def sleep(w=1): time.sleep(w) return 0 #初始化浏览器信息 driver = webdriver.Chrome() driver.get("http ...
分类:
其他好文 时间:
2020-06-09 20:37:19
阅读次数:
624
Package version is always 1.0.0 with dotnet pack https://github.com/kerryjiang/SuperSocket/blob/master/Directory.Build.props When you use dotnet pack, ...
分类:
Web程序 时间:
2020-06-09 18:51:22
阅读次数:
77
刚开始接触electron ,踩到了electron-prebuilt的坑,简单记录下。 1、直接安装 npm install sqlite3 electron . 报错:'cannot find node module sqlite3' 2、重新编译sqlite3 2.1 npm install ...
分类:
数据库 时间:
2020-06-09 18:15:26
阅读次数:
120
报错模型未注册。 示例 const Goods = require('../../model/admin/Goods');//先引入你需要的关联模型 const res = await ctx.mongoose.find().populate({ path: 'Goods ', model: Goo ...
分类:
其他好文 时间:
2020-06-09 18:13:48
阅读次数:
65
public class Item { public static void main(String args[]) { int array[] = {1, 6, 10, -4,8,3, -5}; System.out.println(findMax(array)); } public static ...
分类:
编程语言 时间:
2020-06-09 14:18:26
阅读次数:
134