1、ArrayBuffer转16进度字符串let ab2hex=(buffer) => {
var hexArr = Array.prototype.map.call(
new Uint8Array(buffer),
2023-12-20