我想知道在ngMockE2E中是否有办法拦截服务器通过直通的响应。说实话,我没有任何代码示例,因为我不确定这会是什么样子。我试过这个。
$httpBackend.whenPOST('localhost/my/test/url').passThrough().respond(
function(method,url,data, something, somethingelse, oneMoreThing){
console.log(something);
console.log(data);
console.log(somethingelse);
console.log(oneMoreThing);
});
这当然拦截了请求到服务器,而不是来自服务器的响应,并且记录到控制台的唯一数据是去往服务器的数据那些回来的数据怎么样?如何使用$ httpBackend在此上下文中获取该数据?