1# NodeAdapter错误码 2<!--Kit: ArkUI--> 3<!--Subsystem: ArkUI--> 4<!--Owner: @kangshihui--> 5<!--Designer: @pssea--> 6<!--Tester: @jiaoaozihao--> 7<!--Adviser: @HelloCrease--> 8 9> **说明:** 10> 11> 以下仅介绍本模块特有错误码,通用错误码请参考[通用错误码说明文档](../errorcode-universal.md)。 12 13## 106104 适配器未绑定 14 15**错误信息** 16 17The lazy loading adapter is not bound to the component. 18 19**错误描述** 20 21组件未设置NodeAdapter。 22 23**可能原因** 24 25组件未设置NodeAdapter。 26 27**处理步骤** 28 29为组件设置NodeAdapter。 30 31## 106105 适配器已存在 32 33**错误信息** 34 35The adapter already exists. 36 37**错误描述** 38 39NodeAdapter已经存在。 40 41**可能原因** 42 43NodeAdapter已经存在,不支持添加删除子节点。 44 45**处理步骤** 46 47移除NodeAdapter,或放弃在此处添加删除子节点。 48 49## 106106 子节点已存在 50 51**错误信息** 52 53The corresponding node already has a child node and cannot add an adapter. 54 55**错误描述** 56 57组件已经有子节点 58 59**可能原因** 60 61组件已经有子节点,不支持设置NodeAdapter。 62 63**处理步骤** 64 65移除子节点,或放弃在此处设置NodeAdapter。 66 67## 106107 参数下标越界 68 69**错误信息** 70 71The parameter length in the parameter event exceeds the limit. 72 73**错误描述** 74 75组件事件中index参数超过数组长度限制。 76 77**可能原因** 78 79传入的index参数超出传入的数组长度限制。 80 81**处理步骤** 82 83检查index参数是否超出传入的数组长度限制。 84 85## 106108 数据不存在 86 87**错误信息** 88 89The data does not exist in the component event. 90 91**错误描述** 92 93组件事件中不存在该数据。 94 95**可能原因** 96 97试图查找事件中不包含的数据。 98 99**处理步骤** 100 101确认当前事件是否存在想要查询的数据。 102 103## 106109 不支持返回值 104 105**错误信息** 106 107The component event does not support return values. 108 109**错误描述** 110 111组件事件不支持返回值。 112 113**可能原因** 114 115试图获取事件返回值。 116 117**处理步骤** 118 119确认当前事件是否存在返回值。