這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)如何使用Unity工具類生成文本驗證碼,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)專注于盈江企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),商城系統(tǒng)網(wǎng)站開發(fā)。盈江網(wǎng)站建設(shè)公司,為盈江等地區(qū)提供建站服務(wù)。全流程按需制作,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
文本驗證碼
由于我經(jīng)常使用Unity進(jìn)行webgl版本的開發(fā),看到網(wǎng)站上面用戶登錄有很多的驗證碼驗證。借鑒相關(guān)博客,寫了Unity的工具類文本驗證碼,代碼如下:
工具類:VerificationCode
using System.Collections; using System.Collections.Generic; using System.Text; ////// 該工具類為:生成驗證碼 /// 作者:hys /// 時間:2019.12.30 /// 郵箱:840917807@qq.com /// public class VerificationCode { private static char[] constant = { '0','1','2','3','4','5','6','7','8','9', 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' }; ////// 獲取隨機(jī)生成的驗證碼 /// /// 長度 ///public static string SetDeleKey(int Length) { StringBuilder newRandom = new StringBuilder(62); System.Random rd = new System.Random(); for (int i = 0; i < Length; i++) { newRandom.Append(constant[rd.Next(62)]); //rd.Next(62)返回小于62的非負(fù)隨機(jī)數(shù),Append將Length次隨機(jī)的碼進(jìn)行拼接 } return newRandom.ToString(); } }
Unity腳本
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class HuangVerificationCodeTextScripts : MonoBehaviour { private Text verificationCodeText; //驗證碼Text. private void Awake() { init(); } void Start() { } void Update() { } ////// 進(jìn)行初始化 /// private void init() { verificationCodeText = GameObject.Find("VerificationCodeText").GetComponent(); } /// /// 生成驗證碼 /// /// 驗證碼長度 ///字符串類型的驗證碼 public string generateVerificationCode(int length) { string code= VerificationCode.SetDeleKey(length); verificationCodeText.text = code; return code; } }
上述就是小編為大家分享的如何使用Unity工具類生成文本驗證碼了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。