上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页
摘要: 看到其他同事在使用airtest,于是学习一下 AirtestIDE提供了一个比较全的官方文档,讲解、操作都蛮细的 http://airtest.netease.com/docs/docs_AirtestIDE-zh_CN/index.html 使用airtest执行ui自动化,首先要: 1.安卓 阅读全文
posted @ 2020-04-12 21:39 菜小鱼~ 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 使用蓝图的方便之处就是 将不同的地址分离,不至于臃肿,便于后续功能扩展 manage.py 1 from apps.test1 import test1 #地址一 2 from apps.test2 import test2 #地址二 3 4 app = Flask(__name__) 5 app. 阅读全文
posted @ 2020-04-06 23:18 菜小鱼~ 阅读(297) 评论(0) 推荐(0) 编辑
摘要: flask 默认的 前端路径再 templates下,静态文件再 static下 如果不移动或者修改 app默认路径,可以直接这样写: 1 app = Flask(__name__) 如果有修改,可以这样写: 1 app = Flask(__name__,template_folder='../xx 阅读全文
posted @ 2020-04-06 23:04 菜小鱼~ 阅读(6531) 评论(0) 推荐(0) 编辑
摘要: 之前更换过git的登录密码,然后push的时候发现提交不上去了,查阅相关博客修改后解决 修改本地保存的密码: 1 1.控制面板 2 2.用户账户 3 3.凭据管理器 4 找到你的git地址,编辑-修改密码-保存 参考博客: https://www.cnblogs.com/wangjian941118 阅读全文
posted @ 2020-04-05 17:55 菜小鱼~ 阅读(2852) 评论(0) 推荐(0) 编辑
摘要: pip默认安装的是最新版本,redis和redis-py-cluster ,两个不兼容 建议按照以下方式安装: 1 pip install redis==2.10.6 2 pip install redis-py-cluster==1.3.5 阅读全文
posted @ 2020-04-04 23:57 菜小鱼~ 阅读(2769) 评论(0) 推荐(0) 编辑
摘要: python 中字典,如下: 1 date = {'a':1,'b':''} 增加或修改的话可以 直接 使用 date[key] = value 的方式 如果想将 date 改成 二级字典 {'a': 1, 'b': {'c': 1}},此时上面这种方法会报错: TypeError: 'str' o 阅读全文
posted @ 2020-03-29 17:55 菜小鱼~ 阅读(2700) 评论(0) 推荐(0) 编辑
摘要: 之前需求是当前时间+5天,写法如下 1 var dataCur = new Date(); //当前日期 2 var dataDef = dataCur.getFullYear() + '-' + (dataCur.getMonth() + 1) + '-' + (dataCur.getDate() 阅读全文
posted @ 2020-03-28 21:09 菜小鱼~ 阅读(7710) 评论(0) 推荐(0) 编辑
摘要: 报错如图,看提示是 属性内的值已被移除更换另一种方式: 原写法: 1 <a target="_blank" href="'http://xxxxxxxx'+{{env}}"> {{env}}</a> 修改后: 1 <a target="_blank" v-bind:href="'http://xxx 阅读全文
posted @ 2020-03-25 11:19 菜小鱼~ 阅读(2847) 评论(0) 推荐(1) 编辑
摘要: 1 window.open('https://www.baidu.com/','top'); 2 #在当前页面打开baidu地址 和 <a href='https://www.baidu.com/'></a> 效果相同 3 4 5 window.location.href = 'https://ww 阅读全文
posted @ 2020-03-16 20:19 菜小鱼~ 阅读(1344) 评论(0) 推荐(0) 编辑
摘要: 更新本地分支的时候,提示让先merge 可以忽略本地改动直接覆盖: 1 git reset --hard 2 git pull 阅读全文
posted @ 2020-03-15 16:17 菜小鱼~ 阅读(142) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页