鸿蒙开发报错Argument of type '(item: ObjectData) => number' is not xxxx

python 复制代码
Argument of type '(item: ObjectData) => number' is not assignable to parameter of type '(item: any, index: number) => string'.
Type 'number' is not assignable to type 'string'. <ArkTSCheck>

报错代码

js 复制代码
@Link lists:Array<ObjectData>;
ForEach(this.lists, (item: ObjectData) => {
  this.taskItem(item)()
}, (item: ObjectData) => item.id)

修改代码

js 复制代码
ForEach(this.lists,(item: ObjectData) => {
  this.taskItem(item)
}, (item: ObjectData) => item.id.toString())

📌 总结一下:

错误原因 解决方式
item.id 是 number,但 ForEach 要求 string 加 .toString() 转成字符串
相关推荐
__Benco1 小时前
OpenHarmony子系统开发 - DFX(三)
人工智能·harmonyos
学海无涯乐作舟2 小时前
鸿蒙开发踩坑记录 - 2024S2
harmonyos
__Benco11 小时前
OpenHarmony子系统开发 - DFX(一)
人工智能·harmonyos
Samson Bruce11 小时前
从零开始开发HarmonyOS应用并上架
华为·harmonyos
HMS Core13 小时前
【FAQ】HarmonyOS SDK 闭源开放能力 —Push Kit(12)
华为·harmonyos
__Benco15 小时前
OpenHarmony子系统开发 - 安全(十)
人工智能·harmonyos
王喆15 小时前
跨平台全屏效果实现方案:HarmonyOS、Android与iOS实践总结
flutter·harmonyos
电手21 小时前
纯国产系统,首款鸿蒙电脑下月发布
华为·电脑·harmonyos
写雨.02 天前
鸿蒙定位开发服务
华为·harmonyos·鸿蒙