//获取标准输出//第一种result = sh returnStdout: true ,script: "<shell command>"result = result.trim()//第二种result = sh(script: "<shell command>", returnStdout: ...
分类:
系统相关 时间:
2021-06-23 17:14:46
阅读次数:
0
因为用户名带有中文,在indetity Server4中报错。 解决办法: public IAbpSession AbpSession { get; set; } private readonly TenantManager _tenantManager; private readonly User ...
分类:
其他好文 时间:
2021-06-23 17:14:31
阅读次数:
0
jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
2021-04-2711:01:23.286 ERROR 12572 [nio-8077-exec-5] o.s.b.w.servlet.support.ErrorPageFilter: Cannot forward to error page for request [/check/checkev ...
分类:
其他好文 时间:
2021-06-23 16:47:55
阅读次数:
0
最近打算搭一个spring-cloud的框架,并打算整合mybatis-plus的插件。然后却遇到了一个消耗了我十几个钟的问题。 出现的问题是: org.apache.ibatis.binding.BindingException: Invalid bound statement (not foun ...
分类:
编程语言 时间:
2021-06-22 17:47:51
阅读次数:
0
ssa2 = location.read_locationa(row[4]) datajson["weather"]=ssa2['weather'] datajson["temperature"]=ssa2['temperature'] datajson["windpower"]=ssa2['win ...
分类:
Web程序 时间:
2021-06-21 20:16:26
阅读次数:
0
url的hash和HTML5的history URL的hash URL的hash也就是锚点(#), 本质上是改变window.location的href属性. 我们可以通过直接赋值location.hash来改变href, 但是页面不发生刷新 history H5的history接口是HTML5新增 ...
分类:
Web程序 时间:
2021-06-21 20:05:45
阅读次数:
0
函数获取使用高德天气接口 import requests 爬取数据 def read_location(name): centerurl = "https://restapi.amap.com/v3/config/district?keywords=" centerurl2 = "&subdistr ...
分类:
其他好文 时间:
2021-06-21 20:05:25
阅读次数:
0
《C++程序设计实践》实验2 一、程序设计题(共10小题,100分) 题型得分 100 【描述】 求一元二次方程 的根,系数a、b、c为浮点数。 【输入】 输入a、b和c。 【输出】 若无穷解,则输出:Infinitely solution。 若无解,则输出:No solution。 若是一个实根, ...
分类:
其他好文 时间:
2021-06-21 20:04:41
阅读次数:
0
EFCore截至目前已经更新到了5.x, 然鹅对于一些略复杂的查询的支持还是不尽如人意啊, 有时候还不得不配合dapper来使用. 引入 假如现在有这样一个登录日志表, 需要查询各用户的最近的一次登录记录, 如何用EFCore来查呢? 登录日志表结构和模拟数据如下 生成数据库脚本 USE [EFCo ...
分类:
其他好文 时间:
2021-06-21 19:55:46
阅读次数:
0