页面生命周期 不论是app还是小程序,生命周期是非常重要的知识点。 uni-app支持以下页面常用生命周期函数: onLoad:监听页面加载,其参数为上个页面传递的数据,参数类型为object。 onShow:监听页面显示 onReady:监听页面初次渲染完成 onHide:监听页面隐藏 onUnl ...
分类:
移动开发 时间:
2021-02-06 12:16:08
阅读次数:
0
Net Core使用Log4net报错,添加代码即可 static void Main(string[] args){ System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); } 转 ...
分类:
移动开发 时间:
2021-02-06 12:11:25
阅读次数:
0
一、Message定义Message类官方介绍如下:/** * Defines a message containing a description and arbitrary data object that can be * sent to a {@link Handler}. This obj ...
分类:
移动开发 时间:
2021-02-06 11:45:48
阅读次数:
0
uni-app 是一个使用Vue.js开发跨平台应用的前端框架。 1.vue教程:https://ke.qq.com/course/248507?tuin=4f8d6 2.小程序基础教程:https://ke.qq.com/course/183926?tuin=4f8da6 3.uni-app 官网 ...
分类:
移动开发 时间:
2021-02-05 10:59:14
阅读次数:
0
npm install -g create-react-app npx create-react-app my-app 1.npm run eject 2.html计算 <script> !(function (win, doc) { function setFontSize() { var bas ...
分类:
移动开发 时间:
2021-02-05 10:58:45
阅读次数:
0
IOS不能通过具体元素定位,就要考虑用坐标来点击,不同的模拟器分辨率不太一样,怎么获取模拟器的分辨率? 可能会想是不是和android模拟器一样,可以直接通过界面看到具体分辨率,不过ios好像不可以直接看到 方法: 通过代码,获取当前手机的分辨率 int i=webDrivder.manage(). ...
分类:
移动开发 时间:
2021-02-05 10:57:07
阅读次数:
0
文章目录 保留当前页面,跳转到应用内的某个页面 关闭当前页面,跳转到应用内的某个页面 关闭所有页面,打开到应用内的某个页面 跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面 关闭当前页面,返回上一页面或多级页面 窗口动画 关键点 跳转到 tabBar 页面只能使用 switchTab ...
分类:
移动开发 时间:
2021-02-05 10:53:08
阅读次数:
0
https://www.cnblogs.com/kristin/p/8445141.html 抓不到的原因: 1 协议 fiddler并不支持全部协议,目前已知的有http2、tcp、udp、websocket等,如果应用走了以上协议,那么fiddler肯定是抓不到的。 http2:因为fiddle ...
分类:
移动开发 时间:
2021-02-04 12:02:15
阅读次数:
0
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:
移动开发 时间:
2021-02-04 11:48:59
阅读次数:
0
appium启动公司app报错如下,但是启动像企业微信、微信都是没有问题的; remote stacktrace: UnknownError: An unknown server-side error occurred while processing the command. Original e ...
分类:
移动开发 时间:
2021-02-03 11:09:40
阅读次数:
0
教你如何使用 springProfile 与 springProperty 让你的logback.xml 配置显得更有逼格,当别人还在苦苦挣扎弄logback-.xml的时候 你一个文件就搞定了… springProfile 该 标签允许我们更加灵活配置文件,可选地包含或排除配置部分。元素中的任何位 ...
分类:
移动开发 时间:
2021-02-03 11:09:26
阅读次数:
0
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools. Error:Gradle: A problem occur ...
分类:
移动开发 时间:
2021-02-03 11:01:45
阅读次数:
0
修复蓝牙、黑屏等问题,苹果 macOS Big Sur 11.2 正式版更新 ...
分类:
移动开发 时间:
2021-02-03 10:37:08
阅读次数:
0
ionic cordova build ios 时报错: No profiles for '***' were found: Xcode couldn't find any iOS App Development provisioning profiles matching '***'. Autom ...
分类:
移动开发 时间:
2021-02-03 10:30:48
阅读次数:
0
具体报错信息: 1 Whitelabel Error Page 2 This application has no explicit mapping for /error, so you are seeing this as a fallback. 3 4 Mon Feb 01 21:33:07 C ...
分类:
移动开发 时间:
2021-02-02 11:27:59
阅读次数:
0
源码如下: 使用: 通过列表查询返回实体对象信息。 ...
分类:
移动开发 时间:
2021-02-02 11:05:08
阅读次数:
0
在上两篇文章中,我们介绍了如何为Android系统的硬件编写驱动程序,包括如何在Linux内核空间实现内核驱动程序和在用户空间实现硬件抽象层接口。实现这两者的目的是为了向更上一层提供硬件访问接口,即为Android的Application Frameworks层提供硬件服务。我们知道,Android ...
分类:
移动开发 时间:
2021-02-02 11:03:59
阅读次数:
0