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
参见源码:https://github.com/lljj-x/vue-json-schema-form/blob/master/packages/lib/vue2/vue2-core/src/fields/combiningSchemas/SelectLinkageField/index.js#L146
目前只有属性没值,或者是const一定更新外,没考虑是一个复杂数据结构的场景
例如:
oldData = { objA: { a: 'fasdf' } } newData = { objA: { b: 'fasdf' // 没有深层数据对比导致,这里无法感知 b 属性的新增 } }
新版本之前,可以在anyOf 每个item都配置一个数据a b 来解决差异可能带来的问题
The text was updated successfully, but these errors were encountered:
fix(anyof): 新值为object类型直接覆盖
d2f9791
fix #77
No branches or pull requests
参见源码:https://github.com/lljj-x/vue-json-schema-form/blob/master/packages/lib/vue2/vue2-core/src/fields/combiningSchemas/SelectLinkageField/index.js#L146
目前只有属性没值,或者是const一定更新外,没考虑是一个复杂数据结构的场景
例如:
新版本之前,可以在anyOf 每个item都配置一个数据a b 来解决差异可能带来的问题
The text was updated successfully, but these errors were encountered: