效果图: <!--联系我们开始 --> <div class="linkus container "> <div class="linkUsCon cl"> <div class="bd fl"> <div class="lines"> <span>姓名:</span> <input type="t ...
分类:
Web程序 时间:
2021-01-14 10:40:24
阅读次数:
0
用MDK调试一块STM32F207的程序,想查看一下变量却发现watch窗口总是 <not in scope>和<cannot evaluate>,无奈凑合着通过printf函数进行串口打印查看。1 编译器把这个局部变量给优化掉了,并没有在内存中生成,果断把优化级别改为Level 0,重新编译,解决 ...
分类:
其他好文 时间:
2021-01-14 10:35:05
阅读次数:
0
vue项目报错: Cannot read property 'init' of undefined 原因: echarts版本过高 解决: 1、查看package.json中的echarts版本: 结果为5.0 2、终端中输入: npm uninstall echarts 卸载echarts 3、终 ...
分类:
其他好文 时间:
2021-01-11 11:03:02
阅读次数:
0
mysql5.7 root账号的密码忘记,重置(会删除数据,慎用!)此方法相当于重装。mysql需要在本机安装。 1、cmd命令行停掉mysql net stop mysql2、清除mysql安装目录下的data目录下的所有数据3、cmd执行: mysqld --initialize-insecur ...
分类:
数据库 时间:
2021-01-08 11:42:34
阅读次数:
0
Problem: Whenever I run spyder, It results in the error below QXcbConnection: Failed to initialize XRandr Qt: XKEYBOARD extension not present on the X ...
分类:
编程语言 时间:
2021-01-08 10:52:06
阅读次数:
0
docker-compose无法启动,报错: Cannot open self /usr/local/bin/docker-compose or archive /usr/local/bin/docker-compoe.pkg 问题解决 如题,装了docker-compose后无法启动,找了一些方法 ...
分类:
其他好文 时间:
2021-01-08 10:40:08
阅读次数:
0
报错信息类似以下这2句,其中的"localhost.localdomain"会略有不同。Ambari Agent host cannot reach Ambari Server 'localhost.localdomain:8080'Ambari agent machine hostname (lo ...
分类:
其他好文 时间:
2021-01-07 12:32:11
阅读次数:
0
实用技能:60个常用的Linux命令 ●查看硬件信息相关命令(8个) ifconfig free fdisk ethtool mii-tool dmidecode dmesg lspci ●其它(19个) echo printf rpm yum watch alias unalias date cl ...
分类:
系统相关 时间:
2021-01-06 12:19:17
阅读次数:
0
JAVA: class WordDictionary { private Node head; /** * Initialize your data structure here. */ public WordDictionary() { this.head = new Node(null); } ...
分类:
其他好文 时间:
2021-01-06 12:18:38
阅读次数:
0
JAVA 实现: class Trie { private Node head; /** * Initialize your data structure here. */ public Trie() { this.head = new Node(); } /** * Inserts a word ...
分类:
其他好文 时间:
2021-01-06 12:15:16
阅读次数:
0