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