JavaScript
- 7 ответов
- 0 вопросов
3
Вклад в тег
decodeURIComponent(escape('Bj\u00c3\u00b6rn H\u00c3\u00bcttner'))
/**
* Decodes utf-8 encoded string back into multi-byte Unicode characters.
*
* Can be achieved JavaScript by decodeURIComponent(escape(str)),
* but this approach may be useful in other languages.
*
* @param {string} utf8String - UTF-8 string to be decoded back to Unicode.
* @returns {string} Decoded Unicode string.
*/
function utf8Decode(utf8String) {
if (typeof utf8String != 'string') throw new TypeError('parameter ‘utf8String’ is not a string');
// note: decode 3-byte chars first as decoded 2-byte strings could appear to be 3-byte char!
const unicodeString = utf8String.replace(
/[\u00e0-\u00ef][\u0080-\u00bf][\u0080-\u00bf]/g, // 3-byte chars
function(c) { // (note parentheses for precedence)
var cc = ((c.charCodeAt(0)&0x0f)<<12) | ((c.charCodeAt(1)&0x3f)<<6) | ( c.charCodeAt(2)&0x3f);
return String.fromCharCode(cc); }
).replace(
/[\u00c0-\u00df][\u0080-\u00bf]/g, // 2-byte chars
function(c) { // (note parentheses for precedence)
var cc = (c.charCodeAt(0)&0x1f)<<6 | c.charCodeAt(1)&0x3f;
return String.fromCharCode(cc); }
);
return unicodeString;
}
err.toString()
, a err.stack
, значит вопрос в том откуда берется этот stack
super(message, 404, 2);
super(message);
this.stack
- строка которая начинается с Error: Ресурс не найден!
super(message);
Меняется имя this.name = 'APIError';
После этого статический метод Error.captureStackTrace
перезаписывает свойство this.stack
на сей раз уже используя имя 'APIError'
, теперь this.stack
начинается с APIError: Ресурс не найден!
this.name = 'Error404';
, но в строке this.stack
так и остается APIError: Ресурс не найден!
name
в прототипAPIError.prototype.name = 'APIError';
Error404.prototype.name = 'Error404';
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
} else {
this.stack = (new Error()).stack;
}
this.stack
Error
устанавливает геттер затем используется ленивое вычисление, и если его не трогать раньше времени, то получится ожидаемое значение.