个人案例
- 半夏浓汤
这是一个原生微信小程序,里面使用了主要包括基础API的使用、自定义组件开发、wxs使用等
一个“五脏俱全”的小程序扫码体验
我们以前的项目一直都是根据滚动距离估算的,有段时间没了解了,现在还是取不到id吗?
scroll-view组件的scroll-into-view属性获取不到元素id?bindscroll="swichNav"函数获取不到元素id [图片] <scroll-view scroll-y="true" scroll-with-animation="true" refresher-enabled="true" enhanced="true" scroll-into-view="{{rowView}}" scroll-top="{{scrollTop}}" bindscroll="swichNav" class="task_view" style="height:{{menuHeight}}px"> <view class="item_scroll"> <block wx:for="{{task}}" wx:for-index="index" wx:key="item"> <text id="row_{{index}}" style="color: #ffffff;">{{item.time}}</text> <view wx:for="{{item.shop}}" wx:for-item="items" wx:key="item" class="shop"> <text>{{items.name}}</text> <text class="shop_order">20</text> <view class="flex-center shop_info"> <image class="avatar_35" mode="aspectFill" lazy-load="true" src="cloud://ohho-0g07i44qa70ce331.6f68-ohho-0g07i44qa70ce331-1304584431/icon/default_img.png"></image> <view class="flex-center"> <text>距您</text> <text>1230/m</text> </view> </view> </view> </block> </view> </scroll-view> bindscroll="swichNav"函数 swichNav: function (e) { console.log(e.currentTarget); },
2021-12-24你好,请问你的这个问题解决了吗?我也遇到了相似的问题。
企业微信打开小程序,分享页面给企业微信里的微信好友,微信看到的是?企业微信加了微信好友或者微信群,企业微信打开小程序分享给微信好友或者微信群,微信端看到的是?,并且打不开 [图片]
2021-12-24一样的问题,安卓可以,ios报错,把所有的检查了一般。微信给的检测工具也检测了一遍签名返回是一致的。但是还是报错,愁人。
调用wx.config报invalid signature?调用wx.config一直报invalid signature,具体参数如下: url:https://epaytest.boscex.com/bosc_wechat/cardlist jsapi_ticket:"bxLdikRXVbTPdHSM05e5uxv-L8i2s1qmBiOBfJpDTxg7IfBFaaN5PEyC83K2PeQG9zzu3xto3TabFdSnnV-pgw" appId: "wx120dde799dad89d9" nonceStr: "407ed0d5-63fa-4bf6-8c2f-62e0a29f8ba3" timestamp: "1611130993" 后台计算得到的signature: "5e5379a8373896f263fce9dae266fbb502db260e" 已按照开发者文档里常见错误及解决方法invalid signature签名错误的1-6检查完毕,仍然报错,麻烦请看下日志。
2021-07-06请问现在问题解决了吗?我这边也遇到了相同的问题,如果使用input,有些ios手机又闪退,现在陷入两难境地。
微信小程序中用web-view打开公众号,chooseImage无法弹出安卓正常,ios异常,报chooseimage:permission the value is offline verifying; window.onload = () => { getWXconfig(); } function getWXconfig() { var url = window.location.href.split('#')[0]; let token ='' let appid = ''; let baseUrl = '' axios.post(baseUrl + '/owechat/location/signature', {url: url}, {headers: {token}}).then(({data}) => { if (data.code === 1001) { wx.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: appid, // 必填,公众号的唯一标识 timestamp: data.result .timestamp, // 必填,生成签名的时间戳 nonceStr: data.result .noncestr, // 必填,生成签名的随机串 signature: data.result .signature, // 必填,签名 jsApiList: [ 'chooseImage' ] // 必填,需要使用的JS接口列表 }); wx.ready((res) => { wx.chooseImage({ fail: (res) => { console.log(res); } }) }) } }).catch(function (error) { console.log(error); }); }
2021-05-06