摘要: pyautogui.typewrite('Hello world!') # 输入Hello world!字符串 pyautogui.typewrite('Hello world!', interval=0.25) # 每次输入间隔0.25秒,输入Hello world! pyautogui.pres 阅读全文
posted @ 2023-01-20 17:30 河北大学-徐小波 阅读(393) 评论(0) 推荐(0) 编辑
摘要: pms/hello.pm #!/usr/bin/perl package Hello; sub hello_test{ =pod 这是注释 这是注释 =cut #这是我的第一个程序 print "文件名:". __FILE__ . "\n"; print "行号:" . __LINE__ ."\n" 阅读全文
posted @ 2023-01-20 16:35 河北大学-徐小波 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 前后端开发学习中,vue里面需要跨域访问后台数据 可在springboot后台里面添加个配置类即可: package com.springboottest.config; import org.springframework.beans.factory.annotation.Configurable 阅读全文
posted @ 2023-01-20 16:02 河北大学-徐小波 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 增加业务异常处理类: package com.example.demo.config; import lombok.Data; @Data public class BizException extends RuntimeException{ protected Integer errorCode; 阅读全文
posted @ 2023-01-20 14:48 河北大学-徐小波 阅读(26) 评论(0) 推荐(0) 编辑