上一页 1 ··· 4 5 6 7 8 9 10 下一页

2022年2月7日

uni小程序长按保存图片

摘要: 1 <!-- #ifdef APP-PLUS --> 2 <image :src="图片地址" mode="aspectFill" @longpress="savePhoto(图片地址)"/> 3 <!-- #endif --> 4 <!-- #ifdef MP --> 5 <image :src= 阅读全文

posted @ 2022-02-07 14:41 SE7EN_96 阅读(667) 评论(0) 推荐(0) 编辑

2022年1月27日

uni 小程序chooseLocation不生效的问题

摘要: manifest.json中小程序获取地址权限未开启? 阅读全文

posted @ 2022-01-27 10:31 SE7EN_96 阅读(1989) 评论(0) 推荐(0) 编辑

2022年1月25日

uni 背景图拼接变量的方式

摘要: :style="[{backgroundImage:'url(' + imgUrl + 'static/index/Frame%201685@2x.png)' }]" 阅读全文

posted @ 2022-01-25 08:41 SE7EN_96 阅读(362) 评论(0) 推荐(0) 编辑

2022年1月24日

关于同个组件在多个页面应用时会发生数据互相污染的问题

摘要: 页面中的组件v-if绑定用来显示隐藏组件的判定值(弹窗类组件),在组建隐藏时写在组件,不会发生污染 阅读全文

posted @ 2022-01-24 20:21 SE7EN_96 阅读(310) 评论(0) 推荐(0) 编辑

2022年1月21日

vuex this.$store undefined

摘要: 指向问题,全局修改指向 阅读全文

posted @ 2022-01-21 14:22 SE7EN_96 阅读(123) 评论(0) 推荐(0) 编辑

2022年1月17日

数组常见方法,数组的循环及使用区别

摘要: filter方法:创建一个新数组,新数组的元素是符合指定条件的元素,不会检测空数组,不会改变原数组。 是否改变原数组:不改变 const arr = [0,1,2,3,4] const arr2 = arr.filter(item=>item>2) alert(arr);//0,1,2,3,4 al 阅读全文

posted @ 2022-01-17 20:34 SE7EN_96 阅读(272) 评论(0) 推荐(0) 编辑

foreach如何跳出循环

摘要: break;continue不生效, 使用 try { l.forEach((v, i, a) => { if (a[i].is_myself == 1) { that.leftIndex = i throw new Error('err') } }) } catch (e) { return; } 阅读全文

posted @ 2022-01-17 16:14 SE7EN_96 阅读(149) 评论(0) 推荐(0) 编辑

uni 小程序获取手机号显示does not have a method “getPhoneNumber“

摘要: <button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button> 改为 <button open-type="getPhoneNumber" @getphonenumber="getPhoneNumber 阅读全文

posted @ 2022-01-17 11:32 SE7EN_96 阅读(394) 评论(0) 推荐(0) 编辑

2022年1月12日

小程序对于生成二维码扫码进入页面的调试方法

摘要: 生成的二维码保存本地 小程序开发工具点击普通编译 即可跳转到二维码页面调试 阅读全文

posted @ 2022-01-12 15:44 SE7EN_96 阅读(321) 评论(0) 推荐(0) 编辑

uniapp 跳转携带对象时Error: Unexpected end of JSON input

摘要: 报错原因:参数中有不识别的字符 解决办法:使用encodeURIComponent编码 uni.navigateTo({ url:'../goodDetail/goodDetail?obj='+encodeURIComponent(JSON.stringify(e)) }) this.obj= JS 阅读全文

posted @ 2022-01-12 10:00 SE7EN_96 阅读(232) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 下一页

导航