错误在src / app / account / phone-login / phone-login.component.ts(288,53):错误TS2339:属性'拆分'类型'字符串|中不存在Int32Array&#39 ;. 财产'拆分'类型' Int32Array'。
上不存在我认为这确实是一个奇怪的问题,并且在角度版本升级后会出现问题
let hash = (Md5.hashStr(this.account.password)).split('');
hash[5] = this.account.password.charAt(0);
hash[10] = this.account.password.charAt(1);
hash[15] = this.account.password.charAt(2);
let cryptoPwd = hash.join('');
答案 0 :(得分:1)
let hash = ((Md5.hashStr(this.account.password)).toString()).split('');
hash[5] = this.account.password.charAt(0);
hash[10] = this.account.password.charAt(1);
hash[15] = this.account.password.charAt(2);
let cryptoPwd = hash.join('');