我在使用 Angular JS 开发 UI 时使用 ngMockE2E 来模拟 httpBackend。该应用程序在带有由虚拟机提供的后端的灰熊服务器上运行。现在,当我访问网站时,控制台会记录错误:
意外请求:GET /api/info
预计不再有请求
就我而言,我只想模拟一个数据库的数据。除此之外,我想通过一个按钮即时打开/关闭模拟。这一直有效,直到出现错误。对于这种情况,我写了以下内容:
$httpBackend.whenPOST(function (url) {
if (!mockup) {
return false;
}
var target_url = (someUrl);
return target_url === url;
}).respond(function (method, url, data) {
return [200, [someData], {}, 'mockupData'];
}
);
除此之外,我还添加了以下内容以传递所有其他请求:
// pass the rest of the queries
$httpBackend.whenGET(/.*/).passThrough();
$httpBackend.whenPOST(/.*/).passThrough();
$httpBackend.whenPUT(/.*/).passThrough();
$httpBackend.whenDELETE(/.*/).passThrough();