08 2021 档案

摘要://输出A-Z 26个大写字母 for(var i=0;i<26;i++){ console.log(String.fromCharCode(65+i)); } //输出a-z 26个小写字母 for(var i=0;i<26;i++){ console.log(String.fromCharCod 阅读全文
posted @ 2021-08-31 11:34 嗨,阿良 阅读(1298) 评论(0) 推荐(0)
摘要:import string string.ascii_uppercase # 获取26个大写字母 (ABCDEFGHIJKLMNOPQRSTUVWXYZ <class 'str'>) string.ascii_lowercase # 获取26个小写字母 (abcdefghijklmnopqrstuv 阅读全文
posted @ 2021-08-31 11:21 嗨,阿良 阅读(984) 评论(0) 推荐(0)
摘要:proxyTable: { '/api': { // 本地开发 target: 'http://127.0.0.1:8000', // 测试环境 55 // target: 'http://10.100.7.55:8000', // 测试环境 50 // target: 'http://10.100 阅读全文
posted @ 2021-08-23 15:14 嗨,阿良