後端編碼 

  public string Getstr()
  {
        string strEncode = "My name is Gavin!";
        byte[] toEncodeAsBytes = System.Text.Encoding.UTF8.GetBytes(strEncode);
        return Convert.ToBase64String(toEncodeAsBytes);
  }

 

 前端解碼 

<script>
   function call_web() {
            var strRecive = "<%=Getstr()%>";
            console.log(strRecive);
            var strDecode = atob(strRecive)
    console.log(strDecode);
        };
</script>

編碼前:My name is Gavin!

編碼後:TXkgbmFtYSBpcyBHYXZpbiE=

解碼後:My name is Gavin!

 

解碼後轉Json格式

JSON.parse(strDecode);

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 門外漢 的頭像
    門外漢

    門外漢的筆記

    門外漢 發表在 痞客邦 留言(0) 人氣()