作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将附加配置传递给 $http 服务响应?代码如下:
var promises = [];
angular.forEach(rows, function(rowIterator) {
var additionalConfig = {
config1: rowIterator.config1,
config2: rowIterator.config2
}
promise = $http({
method: "get",
url: "http://domain.com/" + rowIterator.videoId + '?appName=playlist',
params: {}
});
promises.push(promise);
});
return $q.all(promises).then(function(data) {
// handle data from all promises WITH passed custom configs
});
那么我如何在 $q.all 中读取使用从“additionalConfig”传递的配置获取的数据?
最佳答案
这是在黑暗中进行的一次疯狂尝试,但是如何像这样链接响应 promise ......
promises.push(promise.then(function(response) {
return {
response: response,
additionalConfig: additionalConfig;
};
}));
然后...
return $q.all(promises).then(function(data) {
angular.forEach(data, function(obj) {
console.log('Response', obj.response);
console.log('Additional config', obj.additionalConfig);
});
});
关于javascript - AngularJS - 如何在 $http 响应中传递额外的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26155223/
我是一名优秀的程序员,十分优秀!