我对Angular 1.x服务有疑问。这是代码:
export const MyService = () => {
//some code
};
当我尝试将该服务注入此控制器时......
export default function MyController(MyService) {
'ngInject';
//some code
}
...它会抛出以下错误:
Error: [ng:areq] Argument 'fn' is not a function, got undefined
我该如何解决?
答案 0 :(得分:0)
修正了!!这只是一个错误的问题