模拟音频接口之TRS接口 说到TRS接口,一般人初听可能不知道它是什么,不过只要把实物放在面前,大家就都知道它是什么了。其实日常生活中我们见得最多的就是TRS接口,它的接头外观是圆柱体形状,通常有三种尺寸1/4"(6.3mm)、1/8"(3.5mm)、3/32"(2.5mm),我们最常见的是3.5m ...
分类:
其他好文 时间:
2021-06-08 22:48:54
阅读次数:
0
按照官方设置写的路由,卡在了Cannot read property 'matched' of undefined这个错误问题,查了很多资料才知道,有两上命名是不能改动的,route与router; 在目录新建了文件router.js import Vue from 'vue' import vue ...
分类:
其他好文 时间:
2021-06-07 20:35:33
阅读次数:
0
1.在自己的服务器中找到redis的配置文件 redis.conf 使用命令vi redis.conf或vim redis.conf ...
分类:
其他好文 时间:
2021-06-07 20:35:04
阅读次数:
0
问题: Jemeter 使用 jdbc 连接 Mysql 8.0.17, 出现 Cannot create PoolableConnectionFactory (Could not crCannot create PoolableConnectionFactory (Could not create ...
分类:
数据库 时间:
2021-06-07 20:29:47
阅读次数:
0
db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:
数据库 时间:
2021-06-07 20:09:12
阅读次数:
0
1.作用 它可以根据数据库中的表,来帮我们生成供mybatis使用使用实体类,xml和接口类。 2.基本用法 在maven的pom文件中引入MBG(MyBatis Generator)jar包 <dependency> <groupId>org.mybatis.generator</groupId> ...
分类:
其他好文 时间:
2021-06-07 20:05:20
阅读次数:
0
PyMysql连接数据库 防止sql注入 import pymysql ? ? def insertsql(): # 建立连接 connection_sql = pymysql.connect( host='localhost', port=3306, user='root', password=' ...
分类:
数据库 时间:
2021-06-07 20:05:01
阅读次数:
0
docker删除镜像报错处理,Error response from daemon: conflict: unable to delete a945e7fd5401 (cannot be forced) - image has dependent child images ,删除为none的镜像 ...
分类:
其他好文 时间:
2021-06-05 18:28:16
阅读次数:
0
写代码的时候遇到这个错误,看了好久才发现问题原因,特此记录一下: data需要写return{ },不写的话就会出现这个错误。 ...
分类:
其他好文 时间:
2021-06-05 18:25:58
阅读次数:
0
解决从github上拉代码时报错“Failed to connect to localhost port 1080: Connection refused” 需要两行命令解决问题主要原因是使用了proxy代理,我们只需要关闭代理 git config --global http.proxy //查看 ...
分类:
其他好文 时间:
2021-06-05 18:13:54
阅读次数:
0