标签:blog io ar div sp cti log on c
function fn(){
var a = $.Deferred();
a.reject(‘hahaha精神工疾‘);
return a.promise();
}
fn().then(function() {
console.log(‘success 1‘);
},function (msg) {
console.log(msg);
}).then(function() {
console.log(‘success 2‘);
},function (msg) {
console.log(msg);
});
//‘hahaha精神工疾’
//underfined
then的错误执行会传递,但错误信息不传递
标签:blog io ar div sp cti log on c
原文地址:http://www.cnblogs.com/cjy1993/p/3979103.html