1.下载服务端 wget https://superb-sea2.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.2.3/zabbix-3.2.3.tar.gz 1.2停止zabbix服务 /etc/init.d/zabbix ...
分类:
其他好文 时间:
2020-06-25 23:21:38
阅读次数:
76
最近测试Zabbix 5.0,去修改语言时发现不能选择“Chinese(zh_CN)”,这个选项在下拉框中是灰色的(无法选择)。提示“You are not able to choose some of the languages, because locales for them are not ...
分类:
编程语言 时间:
2020-06-25 21:34:13
阅读次数:
69
一、web控件的交互进阶 selenium需要与浏览器交互就需要导入Action Chains,主要用于模拟鼠标的行为,比如单击、双击、拖动等; 当调用Action Chains的方法时,会将所有操作按顺序存入队列 当调用perform()方法时,队列中的事件会依次进行 from selenium ...
分类:
其他好文 时间:
2020-06-25 19:53:02
阅读次数:
72
今天正常打开idea,却发现maven窗口找不到了:试了这些方法 首先idea自带了maven控件,不像Eclipse还需要下载控件,如果你以前有maven在右边,出于某种原因,消失找不到 了,你可以试试我写的方法。 方法1.你点击一下你idea界面最左下角的那个小框,maven应该从里面找到 方法 ...
分类:
其他好文 时间:
2020-06-25 17:32:27
阅读次数:
133
打开ueditor/php/config.json 里面设置一目了然 /* 上传图片配置项 */ "imageActionName": "uploadimage", /* 执行上传图片的action名称 */ "imageFieldName": "upfile", /* 提交的图片表单名称 */ " ...
分类:
Web程序 时间:
2020-06-25 15:54:25
阅读次数:
119
selenium定位type属性 driver.find_element_by_css_selector('input[type="password"]').send_keys('Password') from selenium import webdriver #用来驱动浏览器的 from sel ...
分类:
其他好文 时间:
2020-06-25 14:13:22
阅读次数:
99
##多表查询: 1.内连接查询: 1.隐式内连接; 出现的小问题:Incorrect string value: '\xE5\xBC\x80\xE5\x8F\x91...' for column 'dname' at;解决方案:修改字符集为utf8. 语句:SELECT * FROM emp,dep ...
分类:
数据库 时间:
2020-06-25 11:34:26
阅读次数:
88
开源地址 CoreFX is the foundational class libraries for .NET Core. It includes types for collections, file systems, console, JSON, XML, async and many oth ...
分类:
Web程序 时间:
2020-06-25 10:11:21
阅读次数:
240
Action和Func是微软已经定义好的的两种委托类型,区别是Action是没有返回值的,而Func是需要返回值的。 1 //Action内置委托的实例化及调用 2 //不带参数 3 Action myAction1 = () => { Console.WriteLine("这是一个Action委托 ...
前言 有些时候我们会发现方法名称都正确匹配,但就是找不到对应请求接口,所以本文我们来深入了解下何时会出现接口请求404的情况。 匹配控制器Action方法(404) 首先我们创建一个web api应用程序,我们给出如下示例控制器代码 [ApiController] [Route("[controll ...
分类:
Web程序 时间:
2020-06-24 22:04:25
阅读次数:
77