上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页
摘要: 系统环境:操作系统:Windows server 2016Python 版本:3.7.6DBUtils 版本:2.0 问题描述:pip 有安装 DBUtils 包,但是使用语句:from DBUtils.PooledDB import PooledDB, SharedDBConnection 却一直 阅读全文
posted @ 2022-11-26 09:25 创客未来 阅读(967) 评论(0) 推荐(0)
摘要: 在安装pymysql时候总是安装失败。因为是安装超时,需要利用国内镜像。 pip install -i https://pypi.doubanio.com/simple/ pymysql 参考文档:https://blog.51cto.com/hld1992/2057321?source=drt 阅读全文
posted @ 2022-11-26 09:23 创客未来 阅读(62) 评论(0) 推荐(0)
摘要: 1.搭建 nginx-rtmp 下载 nginx-rtmp-http-flv-master。 参考:https://blog.csdn.net/KayChanGEEK/article/details/105098588 2.在服务器上运行会遇到nginx.exe 运行时候出现应用程序运行不起来 需要 阅读全文
posted @ 2022-11-17 13:35 创客未来 阅读(474) 评论(0) 推荐(0)
摘要: SpringBoot 使用 WebSocket 非常方便,依赖上仅需要添加相应的 Starter 即可。 1.添加 starter 依赖 在maven中添加引用 <!--websocket--> <dependency> <groupId>org.springframework.boot</grou 阅读全文
posted @ 2022-11-04 15:02 创客未来 阅读(84) 评论(0) 推荐(0)
摘要: 一、传输层**该层为两台主机上的应用程序提供端到端的通信。传输层有两个传输协议:TCP(传输控制协议)和 UDP(用户数据报协议)。其中,TCP是一个可靠的面向连接的协议,udp是不可靠的或者说无连接的协议。 二、TCP的特点:TCP是面向运输层的协议。使用TCP协议之前,必须先建立TCP连接,在传 阅读全文
posted @ 2022-10-31 19:21 创客未来 阅读(1375) 评论(0) 推荐(1)
摘要: 阅读全文
posted @ 2022-10-27 13:55 创客未来 阅读(82) 评论(0) 推荐(0)
摘要: //百度坐标转高德(传入经度、纬度) function bd_decrypt(bd_lng, bd_lat) { var X_PI = Math.PI * 3000.0 / 180.0; var x = bd_lng - 0.0065; var y = bd_lat - 0.006; var z = 阅读全文
posted @ 2022-10-27 10:52 创客未来 阅读(343) 评论(0) 推荐(0)
摘要: 1.通过端口获取PID netstat -aon|findstr "10000" 2.通过PID杀死进程 taskkill -f -pid 36780 阅读全文
posted @ 2022-10-26 13:03 创客未来 阅读(246) 评论(0) 推荐(0)
摘要: 错误描述 在使用uni-app开发微信小程序的时候,想要通过uni.chooseLocation获取用户地理位置的时候出现chooseLocation:fail the api need to be declared in the requiredPrivateInfos field in app. 阅读全文
posted @ 2022-10-24 10:10 创客未来 阅读(9110) 评论(0) 推荐(0)
摘要: vue一个前端但是后端接口多个,在nginx中配置: server { listen 10001; server_name share_pingtai; location / { root /home/kfy/pingtai; index index.html index.htm; } locati 阅读全文
posted @ 2022-10-21 14:44 创客未来 阅读(363) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页