HarmonyOS 鸿蒙Next:Cannot find module '@ohos.filemanagement.userFileManager' or its corresponding type declarations.

发布于 1周前 作者 sinazl 来自 鸿蒙OS

HarmonyOS 鸿蒙Next:Cannot find module ‘@ohos.filemanagement.userFileManager’ or its corresponding type declarations. 各位大佬,求助在编译工程的时候出现这个问题:发现这个包没有,在external libraries的api里耶确实没找到这个包,可是文档说明里 5.0.0(12)这个包依然在用,请问如何可以引用进来,谢谢各位大佬。


更多关于HarmonyOS 鸿蒙Next:Cannot find module '@ohos.filemanagement.userFileManager' or its corresponding type declarations.的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

3 回复

5.0.0(12)中只是提到了,但是并没有api相关文档,应该是不对外暴露接口了

更多关于HarmonyOS 鸿蒙Next:Cannot find module '@ohos.filemanagement.userFileManager' or its corresponding type declarations.的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


sdk没找到
要不单独下一个最新版的SDK
然后配置上去?

在HarmonyOS(鸿蒙)开发中遇到“Cannot find module ‘@ohos.filemanagement.userFileManager’ or its corresponding type declarations.”这一错误,通常意味着你的项目中缺少对应的模块或者模块路径不正确,亦或是类型声明文件(TypeScript中使用)缺失。

  1. 检查模块路径:确认[@ohos](/user/ohos).filemanagement.userFileManager模块名称及路径是否准确无误。鸿蒙系统的API可能会随着版本更新而变化,请查阅最新的鸿蒙开发文档以确认模块名称及路径。

  2. 依赖管理:确保你的项目依赖中已正确引入该模块。如果是通过npm或yarn等包管理器安装,检查package.json文件或相关配置文件,确认是否已安装该模块。鸿蒙开发中,部分模块可能通过SDK自带,而非通过包管理器安装。

  3. 类型声明文件:如果你在使用TypeScript进行开发,确保有相应的.d.ts文件提供类型声明。鸿蒙系统的某些模块可能不包含官方的类型声明文件,需要自行定义或查找社区提供的声明文件。

  4. 项目配置:检查项目配置文件(如tsconfig.jsonwebpack.config.js等),确保配置正确无误,能够正确解析和加载该模块。

如果问题依旧没法解决请联系官网客服,官网地址是 https://www.itying.com/category-93-b0.html

回到顶部