- H5通过location.replace调用“https://open.weixin”授权记录没清除
在ios 与安卓都存在的问题:H5通过window.location.replace("https://open.weixin.qq.com/connect/oauth2/authorize?appid")调用登录授权时替换当前页面,但是授权成功后跳到新的页面,然后通过微信的底部的返回或者安卓的返回键返回时,发现原先发起授权的页面还存在。更老一点的微信版本是没问题的。 然后网络上面的解决办法( https://www.ucloud.cn/yun/104001.html )是取巧的,请问这个问题什么时候可以解决呢? [图片]
2020-03-31 - 发布两个小程序appid但是共用一套代码(大部分功能相同)
需求是在原有的小程序中又要单独出一套小程序,大部分功能是不变的,只有入口一些界面有出入。分两个小程序发布,两个appid,请问该怎么做呢?
2019-04-15 - movable-view设置x的问题
首先我想用movable-view来实现滑动删除的效果,so写法如下: <movable-area class="box" wx:for="{{[1,2,3,4]}}" wx:key="{{index}}" style="width: 120%; margin-left:-20%;" > <movable-view class="item" style="width: 80%; background: #fff;" direction="horizontal" inertia="true" out-of-bounds="true" bindtouchend='sEnd' data-index='{{index}}' x="{{setX[index]}}" bindchange="slider"> <image class="userImg" src="/image/user.png" catchtap="toUserCard" data-index="{{index}}"></image> <view class='item-right'> <view class=''>xxxxx</view> <view class=''>来源:xxxxx</view> </view> <view class='status'>等待验证</view> <!-- <view class='applay'>添加</view> --> </movable-view> <view class='remove' bindtap='remove'>删除</view> </movable-area> 因为movable-view没有滑动停止触发的事件,所以用到了bindtouchend方法, slider: function(e){ var index = e.currentTarget.dataset.index var xlist = this.data.setX xlist[index] = e.detail.x }, sEnd: function(e){ var index = e.currentTarget.dataset.index var xlist = this.data.setX xlist[index] = xlist[index] >=35 ? 70 : 0 if (index != this.data.preIndex){ if (this.data.preIndex != -1) { xlist[this.data.preIndex] = 70 } this.data.preIndex = index } this.setData({ setX: xlist, }) this.data.preIndex = index } }, 然后问题来了,x设置为0,为什么setData以后,滑动的moveable-view又回到原位置去了(一开始70) [图片] 执行完setData以后: [图片] ……怎么回事,设置x都不起作用的吗?
2018-04-08