你想反馈一个 Bug 还是 提一个需求?Swiper内嵌套Textarea严重BUG-微信小程序教程。
如果是 Bug:
class WXBizDataCrypt: def __init__(self, appId, sessionKey): self.appId = appId self.sessionKey = sessionKey def decrypt(self, encryptedData, iv): # base64 decode sessionKey = base64.b64decode(self.sessionKey) encryptedData = base64.b64decode(encryptedData) iv = base64.b64decode(iv) cipher = AES.new(sessionKey, AES.MODE_CBC, iv) print('cipher is',str(self._unpad(cipher.decrypt(encryptedData)))) decrypted = json.loads(self._unpad(cipher.decrypt(encryptedData))) if decrypted['watermark']['appid'] != self.appId: raise Exception('Invalid Buffer') return decrypted def _unpad(self, s): return s[:-ord(s[len(s)-1:])]
json.loads 时报错:
也不能 decode('utf-8')
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
j***:
有时候成功,有时候就出现上述问题,而且频率还蛮高的,请官方尽快给出解答
本文网址:http://www.91bianli.com/weixinxiaochengxu/58353.html