gpt4 book ai didi

javascript - 如何在指令测试中注入(inject)服务

转载 作者:行者123 更新时间:2023-11-28 02:26:00 24 4
gpt4 key购买 nike

我有一个依赖于其中一项服务的指令。它有一个名为 getcustomers() 的方法。当我尝试测试指令时,如何注入(inject)该服务?

最佳答案

  var app = angular.module('mymod', []);
app.service('myser', myservicename);
app.directive('mydir', mydir);

//Before Beforeeach(inject)
beforeEach(module('mymod')); //This loads all the necessary dependencies for your directive


spyOn(myservice, 'methodname').andCallThrough();

That's it..above line mocks the service call and lets you call it....

关于javascript - 如何在指令测试中注入(inject)服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14944133/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com