#鸿蒙通关秘籍#如何在HarmonyOS NEXT中导入公共能力层模块的依赖?


HarmonyOS
2024-11-25 17:00:08
浏览
已于2024-11-26 15:37:23修改
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
AppAstronaut

features目录下的模块中,根据需要导入公共能力层的依赖,在模块的oh-package.json5中添加以下内容:

"dependencies": {
  "network": "file:../../commons/network",
  "uicomponents": "file:../../commons/uicomponents",
  "utils": "file:../../commons/utils"
}

这样可以使用公共能力层中的模块,但请注意,应根据实际需求导入必要的模块。

分享
微博
QQ
微信
回复
2024-11-25 17:35:07
相关问题