现将字符串转为byte类型,再转为base64
import base64
msg_json_data_base64 = "测试"
msg_json_data_base64 = base64.b64encode(msg_json_data.encode("utf-8"))
print(msg_json_data_base64)
现将字符串转为byte类型,再转为base64
import base64
msg_json_data_base64 = "测试"
msg_json_data_base64 = base64.b64encode(msg_json_data.encode("utf-8"))
print(msg_json_data_base64)