HarmonyOS 鸿蒙Next ArkTs的图片资源Resource类转为string报错9001002
HarmonyOS 鸿蒙Next ArkTs的图片资源Resource类转为string报错9001002 新建一个.ets文件,想要获取Resource中的图片给toolBar的items使用,但是获取报错9001002,明明这个图片是存在的,图片的id也能获取到,查看文档资源管理错误码也没找到具体原因,不知道为什么?
代码如下:
@Entry
@Component
struct TestPage {
@State message: string = 'Hello World'
addReource: Resource = $r('app.media.add')
build() {
Row() {
Column({space: 10}) {
Image(this.addReource)
.width(50)
Text('Resource Image id ==' + this.addReource.id)
.fontSize(20)
.fontWeight(FontWeight.Bold)
Text('Resource Image string ==' + this.getStringFromResouce(this.addReource))
.fontSize(20)
Button('异步获取')
.onClick(() => {
this.getStringAsyncFromResouce(this.addReource)
})
}
.width('100%')
}
.height('100%')
}
async getStringAsyncFromResouce(source: Resource) {
try {
//明明有图片,为什么找不到对应图片?9001002 If the resource not found by resId.
getContext(this).resourceManager.getStringValue(source, (error, value) => {
console.log('reuslt string ===' + value + error.message + '==' + error.code)
});
} catch (error) {
console.error(`reuslt string err ==: ${error.code}, message: ${error.message}.`)
}
}
getStringFromResouce(source: Resource): string {
try {
//明明有图片,为什么找不到对应图片?9001002 If the resource not found by resId.
return getContext(this).resourceManager.getStringSync(source);
} catch (error) {
console.error(`getStringSync failed, error code: ${error.code}, message: ${error.message}.`)
}
}
}
.resourceManager.getMediaContentBase64($r('app.media.icon'), (_, data) => {
// data就是标准的base64图片字符串,可用于直接显示图片
})
更多关于HarmonyOS 鸿蒙Next ArkTs的图片资源Resource类转为string报错9001002的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
我是想通过Resource获取图片路径的方式加载图片,看了文档,getStringValue
获取指定资源ID对应的字符串,可能获取到的不是图片路径;getMediaContentBase64
获取指定资源ID对应的图片资源Base64编码,试了下是可以正常加载图片的。另Image src
: string不支持跨包/跨模块调用该Image组件,Resource格式可以跨包/跨模块访问资源文件,是访问本地图片的推荐方式。但是我用的是.toolBar
的item方式加载的资源图片,参数value
: string, icon
: string, action
: () => void,icon
必须是string类型,所以解决办法就是按照你说的getMediaContentBase64
方法加载图片了。感谢!,
请问最后是怎么的解决办法呢?
@State IconString :string = ‘app.media.icon’
Image($r(this.IconString))
我想这样,也是不行的,改如何修改?
API要求的getStringValue(resId: number, callback: AsyncCallback<string>): void,
【注意】:是 number 类型的 id, 所以把 方法中 source 改为 source.id 即可!!!
以后看文档看仔细了哟:)
getStringValue有四个方法,两个同步、两个异步:
getStringValue(resId: number, callback: AsyncCallback<string>): void
getStringValue(resource: Resource, callback: AsyncCallback<string>): void
找HarmonyOS工作还需要会Flutter的哦,有需要Flutter教程的可以学学大地老师的教程,很不错,B站免费学的哦:BV1S4411E7LY/?p=17
啊哈。。。我直接追溯源码看到只有两个,一搜索居然真的四个:)
不过四个都是异步的,callback 和 Promise全是TS中的异步方法。
实际测试了一下,你给的资源是图片,getStringValue
是针对 app.string.xxx
字符串资源的方法,获取的是相应字符串资源所定义的字符串的值,你对图片资源调用后它会从编译好的字符串资源库中查找,肯定是找不到的了。
在HarmonyOS鸿蒙Next中,使用ArkTs时,尝试将图片资源Resource类转为string时,可能会遇到错误码9001002。该错误通常是由于资源类型不匹配或资源路径无效导致的。Resource类是鸿蒙系统中用于管理资源的核心类,直接将其转为string类型并不符合其设计初衷。Resource类主要用于获取资源的引用,而不是直接转换为字符串。若需要获取资源的路径或标识,应使用ResourceManager类提供的方法,如getString()或getMediaPath(),而不是直接强制转换。确保在调用相关方法时,传入的资源ID或路径是有效的,并且与资源类型匹配。
在HarmonyOS的ArkTS中,将图片资源Resource
类直接转为string
时,可能会遇到错误码9001002。这是因为Resource
类不能直接转换为字符串。正确的做法是使用ResourceManager
来获取资源的路径或URI。例如:
let resourceManager = getContext().resourceManager;
let resource = $r('app.media.icon');
let resourcePath = await resourceManager.getMediaContent(resource.id);
console.log(resourcePath); // 输出资源的路径或URI
这样可以避免直接转换导致的错误。