3

我有一个 API 响应没有数据的状态 202,但响应有一个指向 URL 的标头“位置”。

我查看了 $httpBackend respond(...) 文档,没有提到如何在响应中模拟标头。

我猜测它可能是这样的:

var expectedUrl = 'http://...';
var responseConfig = {
    headers: {
        location: 'http://...'
    }
};
$httpBackend.when(expectedUrl).respond(202, '', responseConfig);

在我的单元测试中,我得到了预期的状态 202,但 headers('location') 返回未定义。

建议?

4

1 回答 1

5

呃,没关系,找到了……

$httpBackend.when(expectedUrl).respond(202, '', responseConfig.headers);

第三个参数应该是 asheaders和 not config

于 2015-03-02T23:33:16.697 回答