1、60秒原则:用户在1分钟内获取信息,处理任务 2、4步原则:屏幕最多点击4下结束任务的设计 3、做任务原则:用户引导,精确推送实现系统找人,推送任务,消红点,流转业务 4、爬楼梯原则:应用具备防错和引导功能,用户操作能逐步回退处理下一业务分支,返回路径清晰 5、跟主流原则:学习大厂主流设计模式 ...
分类:
移动平台 时间:
2020-06-30 21:43:43
收藏:
0 评论:
0 赞:
0 阅读:
71
PART1 何为内存泄漏? 内存泄露(Memory leak),是指程序在向系统申请分配内存空间后(new),在使用完毕后未释放。 结果导致一直占据该内存单元,我们和程序都无法再使用该内存单元,直到程序结束,这是内存泄露。 PART2 JVM/ART JVM(Java虚拟机) 是一个虚构出来的运行J ...
分类:
移动平台 时间:
2020-06-30 21:07:33
收藏:
0 评论:
0 赞:
0 阅读:
53
简述python中functools.wrapper() 首先对于最简单的函数: def a(): pass if __name__ == '__main__': print(a.__name__) 输出结果: a 然后稍微复杂点: def a(func): def wrapper() return ...
分类:
移动平台 时间:
2020-06-30 19:50:18
收藏:
0 评论:
0 赞:
0 阅读:
66
1. Mapping(映射) Mapping 是定义文档及其包含的字段是如何存储和索引的过程 例如,我们用映射来定义: 哪些字符串字段应该被当做全文字段 哪些字段包含数字、日期或地理位置 是否应该将文档中所有字段的值索引到catch-all字段中 1.1. Mapping Type(映射类型) 每个 ...
分类:
移动平台 时间:
2020-06-30 19:36:28
收藏:
0 评论:
0 赞:
0 阅读:
73
示例: 针对手机浏览器检索结果页的某内容进行定位 方案: 一:css选择器(find_element_by_css_selector) driver.find_element_by_css_selector('a.btn.btn-bg2') 二:Appium万能id(find_element_by_ ...
分类:
移动平台 时间:
2020-06-30 19:22:07
收藏:
0 评论:
0 赞:
0 阅读:
77
1.将图片放在video之上 1 <video :src="videoUrl"> 2 <cover-image src="../../static/images/abc.png"></cover-image> 3 </video> 2.将view元素放在video之上 <video :src="vi ...
分类:
移动平台 时间:
2020-06-30 18:32:06
收藏:
0 评论:
0 赞:
0 阅读:
763
1.首先我们以实现方式来切入,基本上有以下四种实现方式: 1)基于Scoket原生:代表框架 CocoaAsyncSocket。2)基于WebScoket:代表框架 SocketRocket。3)基于MQTT:代表框架 MQTTKit。4)基于XMPP:代表框架 XMPPFramework 当然,以 ...
分类:
移动平台 时间:
2020-06-30 18:28:19
收藏:
0 评论:
0 赞:
0 阅读:
61
[root@localhost ~]# yum install syslinux ...
分类:
移动平台 时间:
2020-06-30 18:17:00
收藏:
0 评论:
0 赞:
0 阅读:
67
文章链接:https://www.cnblogs.com/yyhh/p/5140852.html 打开Fiddler,点击菜单栏中的 [Tools] –> [Fiddler Options] 点击 [Connections] ,设置代理端口是8888, 勾选 Allow remote compute ...
分类:
移动平台 时间:
2020-06-30 18:13:25
收藏:
0 评论:
0 赞:
0 阅读:
72
# user/bin/env python # -*- coding:utf-8 -*- # __author__ = "Cc" import logging import time def output_log(log_level): """ 输出日志 :log_level:设置日志级别 :ret ...
分类:
移动平台 时间:
2020-06-30 18:08:14
收藏:
0 评论:
0 赞:
0 阅读:
98
nui app有月份选择日历 <uni-calendar ref="calendar" :date="date" :topTabCur="topTabCur" :insert="false" :lunar="false" :disable-before="true" :showMonth="fals ...
分类:
移动平台 时间:
2020-06-30 17:55:46
收藏:
0 评论:
0 赞:
0 阅读:
84
文章来源:https://www.jianshu.com/p/cb40a5131e9e 关于https强校验或者说ssl双向认证 http://blog.csdn.net/ma_chun_hui/article/details/51934784 测试app是否开启https强校验 开启burp,设置 ...
分类:
移动平台 时间:
2020-06-30 17:47:38
收藏:
0 评论:
0 赞:
0 阅读:
177
WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive) You ...
分类:
移动平台 时间:
2020-06-30 16:37:30
收藏:
0 评论:
0 赞:
0 阅读:
62
if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) { //alert(navigator.userAgent); window.location.href ="iPhone.html"; } else if (/(Android)/i. ...
分类:
移动平台 时间:
2020-06-30 15:39:56
收藏:
0 评论:
0 赞:
0 阅读:
67
原因 在项目启动的时候在 resource目录下没有加载到配置信息 我的项目中,有两个配置文件位于 src/main/java 目录下,而项目默认的加载配置文件的目录是 src/main/resource,因而找不到配置文件。 解决办法 在 pom.xml 中,将 src/main/java 添加为 ...
分类:
移动平台 时间:
2020-06-30 15:14:24
收藏:
0 评论:
0 赞:
0 阅读:
4820
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0 ...
分类:
移动平台 时间:
2020-06-30 14:56:16
收藏:
0 评论:
0 赞:
0 阅读:
62
How To Implement Forms-Based Authentication in Your ASP.NET Application by Using C#.NET This article refers to the following Microsoft .NET Framework ...
分类:
移动平台 时间:
2020-06-30 14:45:14
收藏:
0 评论:
0 赞:
0 阅读:
49
链接:https://pan.baidu.com/s/1_OYrve9XHncF7IjelUzXHQ 提取码:pz5z 一、Aprox 如果担心我提供东西的不和谐,可以通过https://apps.evozi.com/apk-downloader/去下载,前提是你能获得Google Play该软件的 ...
分类:
移动平台 时间:
2020-06-30 14:04:28
收藏:
0 评论:
0 赞:
0 阅读:
495
最近再做spring junit 做单元测试中,报 Failed to load ApplicationContext 错误。 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.bea ...
分类:
移动平台 时间:
2020-06-30 13:52:12
收藏:
0 评论:
0 赞:
0 阅读:
1202
一、写在前面在做Android移动端兼容性测试时,我们经常会将手机连接PC,然后通过adb的命令将被测app安装进手机,一台手机测完后跟着操作下一台,如此往复很是费事。ps:公司有兼容性测试平台且告别手工兼容性测试的朋友请自行跳过本文。二、开始我的表演这次我向大家推荐的方法主要基于python的命令 ...
分类:
移动平台 时间:
2020-06-30 13:49:40
收藏:
0 评论:
0 赞:
0 阅读:
61