後端編碼
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);
全站熱搜
留言列表