Table对于嵌套属性能否生成一列?
#3220
-
Beta Was this translation helpful? Give feedback.
Answered by
ArgoZhang
Apr 6, 2024
Replies: 2 comments 2 replies
-
@yangf85 Thank you for reporting. We will give triage later. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@yangf85 猜不出来。你数据库服务有问题吧,这种问题去讨论组不要上来就 BUG |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
移除
AutoGenerateColumns
可现实,嵌套类处理逻辑没有简单类简单,尽量用模板,也不复杂,实际开发中,我从不用这种写法我看了一下源码,不显示的原因是这样的
AutoGenerateColumns
参数会自动将绑定模型的属性转化成表格列,但是如果绑定模型的属性是另外一个模型时,出去性能考虑(而且可能导致死循环)不在进行展开,所以AutoGenerateColumns
仅对第一层模型有效。TableColumns
模板中给定的绑定列又刚好是复杂类型的属性,组件内部也无法解析,复杂类型的类,不要使用AutoGenerateColumns
下个版本最更多支持,稍后发布
v8.4.1
能支持的好一些Release
8.4.1
#3234