Web

Taro集成人脸核身接口,首先要登录小程序申请人脸核身接口权限,申请通过后才能使用相关API接口。1、登录小程序申请人脸核身接口权限申请页面申请通过后页面2、检查当前手机端是否支持面部识别wx.checkIsSupportFacialRecognition({checkAliveType:2,success:(res)=>{console.log("check_success:",res);if(res.errCode===0||res.errMsg==="checkI...
​e2e端到端测试也叫冒烟测试,用于测试真实浏览器环境下前端应用的流程和表现,相当于代替人工去操作应用。1、引入puppeteer组件​引入puppeteer作为E2E测试的工具,puppeteer是GoogleChrome团队官方的无界面(Headless)Chrome工具。它默认使用chrome/chromium作为浏览器环境运行你的应用,并且提供了非常语义化的API来描述业务逻辑。importpuppeteerfrom'puppeteer';2、编写测试用例​例如:实现输入错误的用户名和密码进行登录,预期结果登录失败describe('Login',()&...
1、AntDesignVue官方网站:https://2x.antdv.com/components/overview/2、BalmUI官方网站:https://next-material.balmjs.com/#/3、WaveUI官方网站:https://antoniandre.github.io/wave-ui/4、Vuestic官方网站:https://vuestic.dev/5、Element+官方网站:https://element-plus.org/#/zh-CN6、Ionic官方网站:https://ionicframework.com/docs/vue/overview7、Na...
1、将TaroCLI版本及相关依赖更新到3.2.1版本cnpminstall-g@tarojs/cli@3.2.12、根据用户授权获取微信头像昵称等信息<AtButtoncircletype='secondary'onClick={()=>this.handleGetUserProfile()}>微信快捷注册</AtButton>//通过getUserProfile获取微信用户信息handleGetUserProfile=()=>&#...