We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
今天在使用 insertTableDataRecord 函数时,发现插入的对象并没有自动生成 key,应该是个遗漏
The text was updated successfully, but these errors were encountered:
function insertTableDataRecord( record: Recordable | Recordable[], index?: number, ): Recordable[] | undefined { // if (!dataSourceRef.value || dataSourceRef.value.length == 0) return; index = index ?? dataSourceRef.value?.length; const _record = isObject(record) ? [record as Recordable] : (record as Recordable[]); unref(dataSourceRef).splice(index, 0, ..._record); return unref(dataSourceRef); }
是不是需要自行生成放在record里?
Sorry, something went wrong.
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days
No branches or pull requests
今天在使用 insertTableDataRecord 函数时,发现插入的对象并没有自动生成 key,应该是个遗漏
The text was updated successfully, but these errors were encountered: