上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 1.华为从2022年9月份开始上架需要上传64位安装包, 2.应用宝上架报应用有病毒,初步估计是权限选的多了,去掉不必要的权限,比如获取手机联系人,读写联系人(实测可行) 基础权限 "<uses-feature android:name=\"android.hardware.camera\"/>", 阅读全文
posted @ 2023-03-02 16:52 我有头盔 阅读(187) 评论(0) 推荐(0) 编辑
摘要: schemes需要在源码视图中配置,需要注意的是 安卓和ios有区别 1.安卓 "android" : { "schemes" : [ "zidingyi" ], } 2.ios "ios" : { "urltypes" : [ { "urlidentifier" : "xxx", //自定义一般为 阅读全文
posted @ 2023-02-23 09:59 我有头盔 阅读(1773) 评论(0) 推荐(0) 编辑
摘要: // 保存截图 downloadFile() { let $this = this; uni.showLoading({ //加载框 title: '保存中...', mask: true }) var pages = getCurrentPages(); //获取当前页面信息 var page = 阅读全文
posted @ 2023-02-14 11:27 我有头盔 阅读(1572) 评论(0) 推荐(0) 编辑
摘要: 1.在app中引入字体是不限制的,如果编译到了小程序中,需要使用以下两种方法 (1)首先通过 css 引入地址,然后在需要使用该字体时使用定义的 font-family 即可。 @font-face { font-family: "kaiti"; src: url("https://spkf-zsx 阅读全文
posted @ 2023-02-09 20:25 我有头盔 阅读(1372) 评论(0) 推荐(0) 编辑
摘要: 1.在hbuider中找到源码视图 2.相关代码 3.手动添加权限 例如: 原文链接:https://blog.csdn.net/weixin_57844432/article/details/127362466 阅读全文
posted @ 2022-12-10 16:28 我有头盔 阅读(2594) 评论(0) 推荐(0) 编辑
摘要: /** * appId:跳转到的小程序app-id * path:打开的页面路径,如果为空则打开首页,path 中 ? 后面的部分会成为 query,在小程序的 App.onLaunch、App.onShow 和 Page.onLoad的回调函数中获取query数据 * extraData:需要传递 阅读全文
posted @ 2022-11-22 14:33 我有头盔 阅读(299) 评论(0) 推荐(0) 编辑
摘要: uni给提供的api中 uni.hideTabBar() 是控制所有的tabbar显示和隐藏,并不能达到我们想要的效果图, 但是我仔细看过文档后发现 uni.setTabBarItem() 中有 visible这个选项控制是否隐藏 可以实现我们的需求 具体代码如下: uni.setTabBarIte 阅读全文
posted @ 2022-11-08 11:19 我有头盔 阅读(5012) 评论(0) 推荐(0) 编辑
摘要: 在app.vue中使用 page{ padding-bottom: constant(safe-area-inset-bottom); /* 兼容 iOS < 11.2 */ padding-bottom: env(safe-area-inset-bottom); /* 兼容 iOS >= 11.2 阅读全文
posted @ 2022-11-05 09:18 我有头盔 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 1.将字体引入项目,本地文件或者线上文件都可以 2.在app.vue中引用 @font-face { font-family: my-font; src: url('~@/static/my-font.ttf'); } 3.使用 .text-myfont{ font-family: my-font 阅读全文
posted @ 2022-10-08 10:31 我有头盔 阅读(1435) 评论(0) 推荐(0) 编辑
摘要: 在项目中有热更新,更新项目版本,但是在有些手机上会卡在启动页 需要在更新后使用 plus.navigator.closeSplashscreen(); plus.runtime.restart(); setTimeout(() => { plus.navigator.closeSplashscree 阅读全文
posted @ 2022-06-16 10:41 我有头盔 阅读(2315) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页