获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
[图片]等了很多24个小时了,一直这样。
为什么修改公众号名称总是报错?接口报错:数据异常,该账号占用名称过多,请联系客服处理
11-08过滤非法字符 const replacement = '\ufffd'; // https://gist.github.com/mathiasbynens/bbe7f870208abcfec860 const loneSurrogates = /[\uD800-\uDBFF](?![\uDC00-\uDFFF])|([^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/g; // string sanitizes the given str by replacing invalid UTF-16 code unit // sequences with the unicode replacement character. Returns a new string. //用 \ufffd 取代无效的增补字节的,无效的高位或者低位 exports.string = function(str) { return str.replace(loneSurrogates, '$1' + replacement); }
String contained an illegal UTF-16 sequence,这是什么错?[图片]
2022-07-28