07 2021 档案
摘要:1. web开发技术文档:https://developer.mozilla.org/zh-CN/docs/Web#docs_for_add-on_developers 2. html和css:https://blog.csdn.net/qq_39910307/article/details/105
阅读全文
摘要:根据微信提供的接口,生成url-link,用户点击url-link,直接跳转微信小程序 文档:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/url-link/urllink.generate.html
阅读全文
摘要:场景:www.a.com/index.html中嵌入www.b.com/index.html,因为www.b.com/index.html必须登录才能显示,如果未登录,www.b.com/index.html会跳转login.html页面。www.b.com/index.html的登录由cookie
阅读全文
摘要:获取手机号:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html
阅读全文
摘要:vue中做AES加密 import CryptoJS from "crypto-js"; //秘钥 const CRYPTOJSKEY= "abcdefgabcdefg12"; // 加密 encrypt(plaintText) { var plaintText = plaintText; var
阅读全文