可以将要删除的item赋为空 this.setData({ [`myList[${index}]`]: {}, }) 若有帮助请帮忙点个"有用"谢谢↓↓
使用setData删除列表中的数组,怎么实现局部更新?pageMessageList.splice(0,pageMsgLength -8) this.setData({ pageMessageList: pageMessageList }) 删除部分数据,发现列表整体重新渲染了。怎样实现列表不重新渲染,只是删除了部分?
2020-04-23是的
<web_view>组件,业务域名配置问题?我在<web-view>里跳转h5,需要把h5地址域名配置到小程序后台。 比如我要打开的是456.com/index.html页面,但我需要通过123.com/index.html来做转发才能打开456.com/index.html,所以我在web-view里写的是123.com/index.html,那我需要把这两个域名都添加到小程序后台吗,求解答?
2020-04-23能否生成一个代码片段看下
wx.canvasToTempFilePath ?<canvas :disable-scroll="true" id="mycanvas" canvas-id="mycanvas" /> 微信版本1.02.2004020 wx.canvasToTempFilePath 生成图片时, 总是返回 fail canvas is empty, 再当前页面操作的,不是组件, 也试过传入第二个参数this都不行
2020-04-23不会的 同一用户在不同主体下的unionid是不一致的 若有帮助请帮忙点个"有用"谢谢↓↓
开放平台unionid暴露了会对安全造成问题吗?开放平台unionid暴露了,会对安全造成问题吗
2020-04-23这个用户是否注册呢 若注册排查下这个用户数据是否存在异常 若未注册的话可能存在注册前是否有什么接口参数访问存在异常的可能 若都没问题可以问下官方是否是这个人的账号存在异常 若有帮助请帮忙点个"有用"谢谢↓↓
微信小程序打不开?后台有用户反馈小程序打不开:已排除缓存过多,微信版本低,网络不佳的原因,求教问题原因和如何解决; [图片] [图片]
2020-04-23每个自然年都会有三次加急的机会
怎么加速审核?怎么加速审核?
2020-04-23https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/launchApp.html 如果有帮助请帮忙点个"有用"谢谢↓↓
跳转app?小程序怎么跳转app
2020-04-23wx.request函数有三个回调 成功success失败fail完成complete 你可以尝试在相应的回调中进行打印日志检查下你的请求具体的问题 若有帮助请帮忙点个"有用"谢谢↓↓
wx.request 没有回调?部分请求可以发送成功,不成功的请求没有回调,在控制台可以看到requst begin、request end 输出
2020-04-23应该是你返回的数据children[0].tabbarbool可能存在异常导致的 你可能直接使用这个对象的属性实际却没有这个对象,使用的时候可以先判断undefined这样可以减少很多空报错 若有帮助请帮忙点个"有用"谢谢↓↓
版本每天都报错,这是什么情况呢?每天都有这个错误记录, undefined is not an object (evaluating 'e.$children[0].tabbarbool');at pages/cats/cats onLoad function;at setTimeout callback function https://usr//pages/cats/app-service.js:2400:14655 https://lib/WAServiceMainContext.js:2:127503 https://lib/WASubContext.js:2:92717 https://lib/WASubContext.js:2:99161 undefined is not an object (evaluating 'i.name') https://usr//pages/quick-shop/app-service.js:1301:6286 t@https://lib/WASubContext.js:2:65881 https://lib/WASubContext.js:2:66003 e@https://lib/WASubContext.js:2:68459 https://lib/WASubContext.js:2:32672 r@https://lib/WASubContext.js:2:32371 https://lib/WAServiceMainContext.js:2:128111 https://lib/WASubContext.js:2:93040 https://lib/WASubContext.js:2:99554
2020-04-23是这个效果吗(不知道你想要的效果是啥) /* 公告 */ @keyframes remindMessage { 0% { -webkit-transform: translateX(90%); } 100% { -webkit-transform: translateX(-180%); } } .notice-wrap { width: 100%; background: #ffebda; height: 100%; position: relative; color: #d09868; } .tongzhitext{ width: 90%; padding: 0 5%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .tongzhi-text { font-size: 28rpx; animation: remindMessage 14s linear infinite; width: 90%; height: 60rpx; display: flex; align-items: center; } .closeView { width: 45rpx; background: #ffebda; height: 45rpx; line-height: 45rpx; position: absolute; right: 0rpx; top: 0rpx; text-align: center; font-size: 35rpx; position: absolute; z-index: 999; } 若有帮助请帮忙点个"有用"谢谢↓↓
relative定位后被遮挡使用z-index为什么无效?定位后被遮挡,我解决方案是用z-index,但是发现还是被遮挡,求助各位师傅。[图片] wxml: <view class="container"> <view class="page-body"> <swiper class="body-pic" indicator-dots="true" autoplay="ture" interval="2000"> <swiper-item> <image src='/images/bg7.jpg'></image></swiper-item> <swiper-item> <image src='/images/bg2.jpg'></image></swiper-item> <swiper-item> <image src='/images/bg3.jpg'></image></swiper-item> </swiper> </view> <view class='notice-wrap' hidden='{{hideNotice}}'> <view class='tongzhitext'> <text class="tongzhi-text">{{notice}}</text> </view> <text bindtap='switchNotice' class="closeView">x</text> </view> </view> wxss: .container { height: 100%; display: flex; flex-direction: column; padding: 0; box-sizing: border-box; } .page-body{ width: 100%; } .body-pic{ width: 100%; height: 250px; } .body-pic image{ width: 100%; height: 250px; } /* 公告 */ @keyframes remindMessage { 0% { -webkit-transform: translateX(90%); } 100% { -webkit-transform: translateX(-180%); } } .tongzhitext { margin-right:80rpx; margin-left: 10rpx; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; z-index:1; } .tongzhi-text { font-size: 28rpx; animation: remindMessage 14s linear infinite; width: 100%; color: #d09868; display: block; position: relative; top: -55px; z-index:9999; } .notice-wrap { background: #ffebda; width: 100%; height: 60rpx; line-height: 60rpx; color: #d09868; font-size: 28rpx; z-index:1; } .closeView { width: 45rpx; height: 45rpx; line-height: 45rpx; position: absolute; right: 20rpx; top: 5rpx; text-align: center; font-size: 35rpx; position: absolute; left:95%; top:245px; z-index:999; }
2020-04-23