在使用wx:for的时候出现了Do not set same key \"NaN\" in wx:key. 去网上查看资料,说是使用wx:key 试了一下,没用 字面意思是不要设置同一个key,我去js里面查看我的item, 原来是这样写的,这种写法应该是把所有的user都set成了array[0].name this.setData({ user:array[0].name }) 正确写法 this.setData({ user:array }) 这样就不报错了…
onLoad: function () { var that = this console.log('https://free-api.heweather.com/s6/weather?location=' + curCity + '&key=fd29112697d54606bd9499e54b05cf1d',) wx.request({ url: 'https://free-api.heweather.com/s6/weather?location='+curCity+'&key=fd2…
在小程序中通过 wx.getUserInfo 获取用户信息,而UnionId 只有关主了公众号才会返回,不关注公众号想获取UnionId则需要我们从返回的 encryptedData 中解码从而获取UnionId. 解密方法查了一下,这边选择的 GitHub地址 帮助类: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Task…