摘要: 删除已经提交的.idea文件夹 git pull origin master # 将远程仓库里面的项目拉下来 //--cached不会把本地的test删除 git rm -r --cached .idea # 删除.idea文件夹 git commit -m '删除.idea' # 提交,添加操作说 阅读全文
posted @ 2022-04-28 16:41 风花一世月 阅读(55) 评论(0) 推荐(0) 编辑
摘要: <template> <!-- #ifdef MP-WEIXIN --> <view> <view> <button type="primary" class='btn' open-type="openSetting" @opensetting="openSetting">授权设置页</button 阅读全文
posted @ 2022-04-28 15:31 风花一世月 阅读(695) 评论(0) 推荐(0) 编辑
摘要: 公众号跳转小程序 公众号-小程序管理:关联小程序,设置菜单就可以直接选择小程序 公众号启用服务器配置,自定义菜单失效 官网地址(https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Creating_Custom-Defined_ 阅读全文
posted @ 2022-04-27 10:47 风花一世月 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 直接转-为/,反正但是要格式化 let timestamp = new Date(date.replace(/\-/g, '/')).getTime(); 阅读全文
posted @ 2022-04-25 17:25 风花一世月 阅读(37) 评论(0) 推荐(0) 编辑
摘要: FTP/FTPS 客户端:FileZilla 客户端 UPX (命令行工具)¶ UPX 是又拍云专为开发者设计,基于命令行的云存储管理工具。通过它,可以实现文件上下传、增量文件同步、目录创建删除、文件删除(包括异步文件批量删除)。 在使用 UPX 之前,需要下载它,点此访问到 Github 下载 U 阅读全文
posted @ 2022-04-19 17:52 风花一世月 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 引用还是正常引用,带上mp-weixin目录,打包时会过滤 // #ifdef MP-WEIXIN iconPath: '../../../static/mp-weixin/a.png', // #endif // #ifndef MP-WEIXIN iconPath: '../../../stat 阅读全文
posted @ 2022-04-19 11:14 风花一世月 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 好像是因为uniapp使用rpx原因,但是搞不懂为什么其他页面会错乱 解决办法,设置横屏的时候,做一个1.2s的延迟在执行 //页面显示时切换为横屏配置 onShow() { // #ifdef APP-PLUS uni.showLoading({ title: "加载中..." }) setTim 阅读全文
posted @ 2022-04-18 15:03 风花一世月 阅读(1620) 评论(1) 推荐(2) 编辑
摘要: 前置条件: 1、接入微信支付 2、与小程序绑定 微信支付-审核号管理授权 代码流程: a、需要有用户openid -调用uni.login获取code,向服务器请求openid uni.login({ provider: 'weixin', success: function (loginRes) 阅读全文
posted @ 2022-04-13 17:35 风花一世月 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: 室内一般采取基站+wifi定位 室外建议使用gps定位 定位插件 https://ext.dcloud.net.cn/plugin?id=2018# 使用定位插件开启gps优先,打开高精度 小米手机测试没有开启wifi,但是获取到的定位格式为wifi定位格式 pda(终端)测试精度为550m,没有开 阅读全文
posted @ 2022-03-29 18:04 风花一世月 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: // 通过经纬度逆地址解析 getAddress(longitude,latitude){ uni.request({ url: 'https://restapi.amap.com/v3/geocode/regeo', //仅为示例,并非真实接口地址。 data: { output: 'json', 阅读全文
posted @ 2022-03-11 11:05 风花一世月 阅读(384) 评论(0) 推荐(0) 编辑