Created
August 22, 2014 09:33
-
-
Save hell0again/a71c3152ba77c2b7e403 to your computer and use it in GitHub Desktop.
promise.catchでコールスタック
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var promise = new Promise(function(resolve, reject) { | |
// .. | |
}); | |
promise.then(function() { | |
// .. | |
}).catch(function(err, data) { // then内でErrorを吐く場合、catch必須。つまりcatch必須。 | |
if (err) { // スタックトレース表示 | |
console.log(err); | |
if (err.stack) { | |
console.log(err.stack.split('¥n').slice(2).join('¥n')); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment