- 博客(23)
- 收藏
- 关注
原创 python通过静态页面提交,完成后台逻辑设计。搭建python unit框架执行测试
搭建python静态页面与后端交互,自动化测试用例编写及执行!
2023-02-02 20:25:33
379
原创 python调用mysql数据操作插入时提示:pymysql.err.OperationalError: (1054, “Unknown column ‘chenshimei‘ in ‘field l
解决:pymysql.err.OperationalError: (1054, "Unknown column 'chenshimei' in 'field list'")
2022-07-10 17:33:25
864
原创 centos下mysql设置密码时总是提示You have an error in your SQL syntax; check the manual that corresponds to your
mysq修改密码语句一直报错
2022-07-10 15:56:57
299
原创 Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。‘)
梯子关掉!就好了。
2022-05-18 16:01:46
1300
原创 解决:VM2040:1 Uncaught TypeError: web3.sha3 is not a function at <anonymous>:1:37
在https://ethernaut.openzeppelin.com/刷题学习时,遇到在控制台执行contract.sendTransaction({data:web3.sha3(“pwn()”).slice(0,10)});报如下图错误:网上找里一下参考资料可以改成:contract.sendTransaction({data:web3.utils.sha3(“pwn()”).slice(0,10)});如下图就不会报错参考链接:https://blog.youkuaiyun.com/weixin_410
2022-02-18 17:44:00
243
1
原创 python在调用def函数打印结果时每次都多输出一个None,因为python中print函数需要返回值,如果你在print函数中所放的函数没有返回值,那么print将会return None
def person(name,age,**kw):print('name: ',name,'age: ',age,'other: ',kw)print(person(‘fangmuxun’,30))print(person(‘fangmutyao’,18,sex=‘girl’,address=‘南都花园’))执行后结果为:后面自己把打印结果的print去掉就好了```pythondef person(name,age,**kw): print('name: ',name,'age
2021-10-21 10:39:10
1727
原创 用python尝试的第一段代码,图书馆维护书本,新增、查询、修改、删除等操作
##############图书馆借书程序编写##########books={1:'English',2:'Chinese',3:'Math',4:'physics',5:'Chemistry',6:'biology'}#print(books)name=input('please input your name: ')print('hello!',name)books_len=len(books)print(name,'welcome! we have ',books_len,'books'
2021-10-20 16:15:57
800
原创 python年龄判断,输入年龄,判断是否成年
age =int(input(“please your age?”))if age >18:print(‘你已成年,都’+str(age)+‘岁了’)else:print(‘teenager’)第一步,input时,需要把输入的转换成整型才能进行数值大小判断第二步,在输出时,有需要把整型转换成字符串输出如下为输出结果:...
2021-10-19 16:19:29
11422
原创 python语法错误--------------------------- SyntaxError --------------------------- invalid syntax -
一直提示错误,不晓得为什么后面我看了下 其他案例是这样唯一的区别就是else的缩进问题,我改了下缩进果然ok了,关键是我一个一行打的呀,匪夷所思
2021-10-19 15:36:29
324
原创 解决jemeter入参格式为json串时,一直提示 “msg“ : “Content type ‘multipart/form-data;boundary=FjJzrXmk45gRlNPR2wULQt
将postman中的接口导入到jemter里执行时,提示 "msg" : "Content type 'multipart/form-data;boundary=FjJzrXmk45gRlNPR2wULQtBRsbSu0bae9LoaXQK8;charset=UTF-8' not supported", 就一直报Failed to execute goal org.apache.maven.plugins:maven-compi
宿主机连接docker容器,执行打包脚本时一直报Failed to execute goal org.apache.maven.plugins:maven-compi,但是在容器内部是可以打包成功的。网上搜了下,都是说未设置java路径,于是我打开docker容器的环境变量env:将上图中的红框内复制到vi /etc/profile的末尾再次在宿主机里执行打包脚本,太好了!成功了!...
2021-08-09 14:42:15
247
原创 docker搭建开发环境(1)
1、下载一个安装了svn的镜像2、用镜像生成容器,安装node、npm、cnpm3、用svn拉最新代码到docker内,进行前端打包cnpm install、cnpm run build 打包成功遇到的问题:ubuntu不识别中文,svn路径中文识别不到解决方案:https://blog.youkuaiyun.com/qq_39441086/article/details/1192419074、安装maven,更新svn后端代码,mvn clean install 时打包成功遇到的问题:打包时提示 /hom
2021-07-30 18:04:49
140
原创 (解决)ubuntu系统中文路径拷贝进去,显示乱码svn://ip/\351\241\271\347\233\256\345\210\227\350\241\250/
@[TO首先,安装中文支持包language-pack-zh-hans:sudo apt-get install language-pack-zh-hans然后,修改/etc/environment(在文件的末尾追加):LANG="zh_CN.UTF-8"LANGUAGE="zh_CN:zh:en_US:en"再修改/var/lib/locales/supported.d/local(没有这个文件就新建,同样在末尾追加):en_US.UTF-8 UTF-8zh_CN.UTF-8 UTF
2021-07-30 11:13:36
911
原创 智能合约遇到的问题整合
参考文档: 手把手参考文档链接:https://blog.youkuaiyun.com/liyuechun520/article/details/78036363 Solidity 编译合约错误 No visibility specified. Did you intend to add "public":https://www.twle.cn/t/640#reply1 https://blog.youkuaiyun.com/weixin_45112822/article/details/90480872第一...
2021-03-08 16:47:34
1168
原创 VMware下安装linux后,用xshell工具连接总是提示拒绝密码
有两处要改:第一处:修改:vim /etc/ssh/sshd_config找到:AuthenticatonLoginGraceTime 120PremitRootLogin without passwdStrictModes yes修改为:AuthenticatonLoginGraceTime 120PremitRootLogin yesStrictModes yes...
2019-08-09 13:53:06
427
原创 sh: 1: vue-cli-service: Permission denied npm ERR! code ELIFECYCLE npm ERR! errno 126 npm ERR! my-pr
在linux环境下,用npm run build编译打包前端,报以下错误:sh: 1: vue-cli-service: Permission deniednpm ERR! code ELIFECYCLEnpm ERR! errno 126npm ERR! my-project@0.1.0 build: vue-cli-service buildnpm ERR! Exit status ...
2019-06-13 11:29:08
8652
4
原创 linux下用tomcat启用jenkinswar包一直报Can't connect to X11 window server using 'localhost:10.0' as the value
1、Can't connect to X11 window server using 'localhost:10.0' as the value of the DISPLAY variable打开tomcat/bin下的catalina.sh,打开文件catalina.sh在所有的 -Dcatalina.home="$CATALINA_HOME" /下面都加上了-Djava....
2019-04-25 14:27:42
799
原创 Jenkins用tomcat8容器启动后,可以打开localhost:8080,但是打不开localhost:8080/jenkins\
Jenkins用tomcat8容器启动后,可以打开localhost:8080,但是打不开localhost:8080/jenkins经查是因为webapp内有一个ROOT文件夹,删掉就好了。欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识...
2019-04-23 10:58:21
1488
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人