我的代码看起来像这样。这个(附图)是我得到的错误,我已经使用受尊重的npm命令安装了StackTrace。我在这里错过了什么吗?进口它, 导入*作为StackTrace来自' stack-trace';
public handleError(error: any) {
const message = error.message ? error.message : error.toString();
window.onerror = function(msg, file, line, col) {
// StackTrace.fromError(error).then(callback).catch(errback);
};
const callbackFun = function(stackframes) {
const stringifiedStack = stackframes.map(function(sf) {
return sf.toString();
}).join('\n');
};
const errback = function(err) { console.log(err.message); };
StackTrace.get().then(callbackFun).catch(errback);
}