我需要在我的开发人员实用程序中模拟某些状态,为此我需要将一些特殊的cookie传递给通过angular $ http模块生成的http请求。
制作http请求的代码看起来很简单:
if (condition){
var headers = getHeaders();
if (headers !== 'undefined'){
config['headers'] = headers;
}
}
return $http(config);
所以看起来我应该在这个配置中添加一些字段。但我在$http文档中找不到任何相关的相关数据。
我不想将cookie设置为浏览器'因为我想只传递几个异步执行的请求。
用angular.js来制作它是真的吗?