本文介绍了角度服务库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在最新版本的 Angular cli 中,我们可以使用 ng g library lib-name
命令来创建库.如 Angular docs 中所述:
In latest versions of Angular cli, we can use ng g library lib-name
command to create library. As mentioned in the Angular docs :
ng serve <project>
还有:
<project> The name of the project to build. Can be an app or a library.
因此,我们可以为
使用您的官方库名称,例如 @foo/foo-library
,angular 会在正确的位置找到它.
Use your official library name, for example @foo/foo-library
, angular will find it in the correct location.
这篇关于角度服务库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!