API:
function queryContact(context: Context, key: string, holder?: Holder, attrs?: ContactAttributes): Promise<Contact>;
报错信息:401 parameter error. The type of id must be number
根据电话号码,查询到的ID为5,接下来使用contact.queryContact(…)查询报错:401 parameter error. The type of id must be number
但是第二个参数就是接收string,传入的也是字符串“5”,内部报错信息不清晰,无法定位错误。
修改参数:
后不再报错。