在Angular 7应用程序中,我成功集成了ngx-avatar
3.2.0。但是,我找不到如何调用AvatarService.getRandomColor()
。在我的组件文件中,我有:
import { AvatarService } from 'ngx-avatar/lib/avatar.service';
...
constructor(private avatarService: AvatarService) { }
...
const color = this.avatarService.getRandomColor(name);
但是我的编译失败并出现以下错误:
ERROR in some.component.ts
Module not found: Error: Can't resolve 'ngx-avatar/lib/avatar.service' in 'd:\projects\...'
将感谢您提供的任何帮助。