模拟登录页,华为账号一键登录

server/2024/11/14 2:35:24/

一、介绍
基于鸿蒙Next模拟账号一键登录,免去账号注册环节
二、场景需求
1. 用户场景
新用户: 需要快速注册并登录,以体验华为的服务。
老用户: 希望快速登录,不用每次输入用户名和密码。
2. 界面设计
Logo和标题: 页面顶部展示华为的Logo及"一键登录"或"华为账号登录"的标题。
3. 功能需求:短信/邮箱验证码:
4. 安全性
二次验证: 可选启用二次验证,如在高风险环境下(新设备登录等),要求用户通过邮件或短信进行确认。
5. 适应性
响应式设计: 确保在不同设备(手机、平板、电脑)上的良好展示。
多语言支持: 提供多种语言选项,方便不同地区用户使用。
6. 用户反馈
操作反馈: 无论是按钮点击还是输入错误,都需要及时反馈用户操作状态。
常见问题解答链接: 用户如果在登录时遇到问题,可以快速找到帮助。

三、业务步骤
第一步:点击“一键登录”,获取登录信息
第二步:拉起授权弹窗
第三步:获取授权,获取用户信息
第四步:展示用户信息,显示功能选项
四、效果展示
 

#<a class=HarmonyOS NEXT 体验官#模拟登录页,华为账号一键登录-鸿蒙开发者社区" height="387" src="https://img-blog.csdnimg.cn/img_convert/142b2319736aabb5da08f361a7673fba.png" width="600" />


五:代码展示:

import { authentication } from '@kit.AccountKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { util } from '@kit.ArkTS';
import { BusinessError } from '@kit.BasicServicesKit';//自定义
import { Mine_SystemItem_Type,CommonConstants } from "../common/CommonConstant"@Entry
@Component
struct Index06 {@State tabMineItem:Mine_SystemItem_Type[] = CommonConstants.MINE_SYSTEM_ITEM_LIST@State isLogin: boolean = false@State userImg: string|Resource|undefined = $r("app.media.app_icon") // 登录头像@State userName: string|undefined = '昵称001' // 用户昵称@State btnTitle: string = '华为账号一键登录' // 用户昵称getHuaWeiAccount(){// 创建授权请求,并设置参数let authRequest = new authentication.HuaweiIDProvider().createAuthorizationWithHuaweiIDRequest();// 获取头像昵称需要传如下scopeauthRequest.scopes = ['profile','phone'];// 若开发者需要进行服务端开发,则需传如下permission获取authorizationCodeauthRequest.permissions = ['serviceauthcode'];// 用户是否需要登录授权,该值为true且用户未登录或未授权时,会拉起用户登录或授权页面authRequest.forceAuthorization = true;// 用于防跨站点请求伪造。authRequest.state = util.generateRandomUUID();// 执行授权请求try {let controller = new authentication.AuthenticationController(getContext(this));controller.executeRequest(authRequest).then((data) => {let authorizationWithHuaweiIDResponse = data as authentication.AuthorizationWithHuaweiIDResponse;let state = authorizationWithHuaweiIDResponse.state;if (state != undefined && authRequest.state != state) {hilog.error(0x0000, 'testTag', `Failed to authorize. The state is different, response state: ${state}`);return;}hilog.info(0x0000, 'testTag', 'Succeeded in authentication: %{public}s',JSON.stringify(authorizationWithHuaweiIDResponse));this.isLogin = !this.isLoginthis.btnTitle = '退出'this.userImg = authorizationWithHuaweiIDResponse.data!.avatarUri;this.userName = authorizationWithHuaweiIDResponse.data!.nickName;}).catch((err: BusinessError) => {this.dealAllError(err);});} catch (error) {this.dealAllError(error);}}// 错误处理dealAllError(error: BusinessError): void {hilog.error(0x0000, 'testTag', `Failed to auth. Code: ${error.code}, message: ${error.message}`);}build() {Column() {Column() {//头像Column() {Image(this.userImg).objectFit(ImageFit.Cover).height(72).width(72).borderRadius(36)Row().height(20)Text(this.userName).fontSize(16)}.width('90%').borderRadius(12).alignItems(HorizontalAlign.Center).justifyContent(FlexAlign.Center).backgroundColor(0xFFFFFF).shadow({radius: 10,color: "#dddddd",offsetX: 6,offsetY: 6}).margin({ top: 15, bottom: 10 }).padding({ top: 30, bottom: 30 })}.justifyContent(FlexAlign.Start).alignItems(HorizontalAlign.Center)Button(this.btnTitle).width('70%').height(30).onClick(()=>{this.getHuaWeiAccount()// this.isLogin = !this.isLogin// this.btnTitle = '退出'}).margin({ top:10,bottom:20 })if (this.isLogin){Column(){//功能选项ForEach(this.tabMineItem,(item:Mine_SystemItem_Type,index:number)=>{Row(){Text(item.itemTitle).fontSize(16).fontColor(0x161616)Blank()Image($r("app.media.ic_right_back_greyWhite")).width(24).height(24)}.width('100%').height(48).padding({left:15,right:10}).stateStyles({normal:{.backgroundColor(0xFFFFFF)},pressed:{.backgroundColor(0xEFEFEF)}})},(item:string)=>item)Row(){Text('隐私声明').fontSize(16).fontColor(0x161616)Blank()Image($r("app.media.ic_right_back_greyWhite")).width(24).height(24)}.width('100%').height(48).padding({left:15,right:10}).stateStyles({normal:{.backgroundColor(0xFFFFFF)},pressed:{.backgroundColor(0xEFEFEF)}})}.width('90%').justifyContent(FlexAlign.Start).alignItems(HorizontalAlign.Center).backgroundColor(0xFFFFFF).shadow({radius:10,color:"#dddddd",offsetX:6,offsetY:6}).padding({top:10,bottom:10}).borderRadius(12)}}.width('100%').height('100%').justifyContent(FlexAlign.Start).backgroundColor(0xEEEEEE)}}


http://www.ppmy.cn/server/108365.html

相关文章

【kubernetes】kubernetes Deployment 详解

Deployment 详解 kubernetes Deployment 详解更新/回滚/缩放/暂停/恢复部署操作 发布策略1、在zs命名空间下创建3个httpd副本并查看结果2、尝试删除其中一个副本并查看结果3、删除所有副本并查看结果4、使用k8s做金丝雀发布测试 kubernetes Deployment 详解 更新/回滚/缩放/暂…

C# opencv识别二维码

新建桌面程序 安装opencvsharp 拖拽设计页面 选择图片识别代码 using OpenCvSharp; using System.Text;namespace QRcodeIdentity {public partial class Form1 : Form{public Form1(){InitializeComponent();}/// <summary>/// 选择图片/// </summary>/// <pa…

物联网安全框架:构建安全互联的未来世界

在数字化浪潮的推动下&#xff0c;物联网&#xff08;IoT&#xff09;技术已经深入我们生活的方方面面&#xff0c;从智能家居到工业自动化&#xff0c;从医疗健康到智能交通&#xff0c;物联网的触角无处不在。然而&#xff0c;随着物联网设备的爆炸式增长&#xff0c;其安全问…

数据结构-符号表

1.概述 符号表最主要的目的就是将一个键和一个值联系起来&#xff0c;符号表能够将存储的数据元素是一个键和一个值共同组成的键值对数据&#xff0c;我们可以根据键来查找对应的值。 符号表中&#xff0c;键具有唯一性,符号表在实际生活中的使用场景是非常广泛的&#xff0c;见…

数据结构——树

文章目录 二叉树和**BST**树与二叉树基本概念常见例子相关术语二叉树 二叉搜索树&#xff08;**BST**&#xff09;二叉树&#xff08;**BST**&#xff09;的算法二叉树&#xff08;**BST**&#xff09;完整实现 二叉树和BST 树与二叉树 基本概念 树是一种非线性结构&#xf…

MONAILabel in 3D Slicer 案例1: 在腹部CT中自动分割脾脏

MONAILabel in 3D Slicer 案例1: 在腹部CT中自动分割脾脏 导读 本系列涵盖从 3D Slicer 医学图像查看器的基础使用到高级自动分割扩展程序的内容&#xff08;从入门到高阶&#xff01;&#xff09;&#xff0c;具体包括软件安装、基础使用教程&#xff0c;自动分割扩展&#x…

网络安全的历史

如今&#xff0c;网络安全几乎成为各大公司和利益相关者关注的焦点。但在早期&#xff0c;网络安全的概念非常模糊。 直到多年以后&#xff0c;由于网络攻击和危险实体威胁的频繁发生&#xff0c;网络安全的发展才受到重视。这些措施的发展成为了网络安全的演变。 网络安全起…

Go语言Time包的使用

原文链接&#xff0c;关注可获取更新 time包 Go语言中有关于时间和日期的方法都在time包里面&#xff0c;Go语言的time包为开发者提供了一套全面而简洁的工具来处理时间相关的操作。包括解析和格式化时间字符串&#xff0c;计算时间差和时区转换等&#xff0c;time包时Go语言…