我想链接一些由服务返回的promise.只要一些返回promise的方法不需要额外的参数,这就可以工作.这是我的例子:
var first = function() { var d = $q.defer(); $timeout(function() { d.resolve("first resolved") },100) return d.promise; }; var second = function(val) { console.log("value of val: ",val); var d = $q.defer(); $timeout(function() { d.resolve("second resolved") },200) return d.promise; }; first().then(second).then(function(value) { console.log("all resolved",value); });
这按预期工作.但是,如果我的服务第二个需要额外的参数val来完成它的工作怎么办?使用上面的方法,val的值是“首先解析”,因为它从第一个得到解析的值.
有没有办法,没有嵌套这样的匿名函数:
first().then(function() { return second("foobar").then(function(value) { console.log("all resolved",value); }); });
我在考虑使用$q.all,但恕我直言,你不能指定你的承诺订单.
解决方法
当然.第一种方式:
first() .then(function() { return second("foobar"); }) .then(function(value) { console.log("all resolved",value); });
第二种(更容易)方式:
first() .then(second.bind(null,"foobar")) .then(function(value) { console.log("all resolved",value); });