HarmonyOS 鸿蒙Next taskpool 函数 Map<string, DataValue>,DataValue取值Throw error: is not callable
HarmonyOS 鸿蒙Next taskpool 函数 Map<string, DataValue>,DataValue取值Throw error: is not callable
public asyncWork(runParam: Map<string, DataValue>) {
let task1 = new taskpool.Task(task, runParam)
taskpool.execute(task1)
}
@Concurrent
function task(runParam: Map<string, DataValue>) {
let dataValue: DataValue = runParam.get(Const.WebSocketConn)
let url: string = dataValue.getStringValue()
}
dataValue.getStringValue() 这行代码 报错 Throw error: is not callable
更多关于HarmonyOS 鸿蒙Next taskpool 函数 Map<string, DataValue>,DataValue取值Throw error: is not callable的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
默认的class数据拷贝会丢失原class的属性和方法。只有new出来的方法都不会丢失。
所以建议使用第三方工具类class-transformer中的plainToClassFromExist
方法,把第二个参数对象拷贝到第一个参数对象中去。
按你这边的情况使用示例为:
let dataValue:DataValue = plainToClassFromExist(new DataValue(), runParam.get(Const.WebSocketConn));
参考:https://developer.huawei.com/consumer/cn/blog/topic/03151854787432021
更多关于HarmonyOS 鸿蒙Next taskpool 函数 Map<string, DataValue>,DataValue取值Throw error: is not callable的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
在HarmonyOS鸿蒙Next中,taskpool
函数中的Map<string, DataValue>
类型数据在取值时抛出Throw error: is not callable
错误,通常是因为尝试调用了一个不可调用的对象。DataValue
可能是一个复杂的数据结构,直接调用它可能会导致此错误。确保在访问DataValue
时,使用正确的方法或属性,而不是尝试调用它。检查代码中是否有类似DataValue()
的调用,并确保使用正确的访问方式,如DataValue.property
或DataValue.method()
。