表格数据为空的情况下,分页工具栏无法获取到记录数,显示为“共条数据”。Update toolbar.js#208
Open
soapyu wants to merge 1 commit intodxq613:masterfrom
Open
表格数据为空的情况下,分页工具栏无法获取到记录数,显示为“共条数据”。Update toolbar.js#208soapyu wants to merge 1 commit intodxq613:masterfrom
soapyu wants to merge 1 commit intodxq613:masterfrom
Conversation
没有数据的情况下,totalCount的值为0,和默认值重复,无法通过__attrVals枚举,导致表格记录统计会显示“共条记录”,使用_set可解决。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
表格在没有数据的情况下,如果开启分页,会显示“共条记录”,看了源码,自定义属性totalCount的值为0,和设置默认值重复,无法通过__attrVals枚举,导致输出的时候获取不到记录数,使用_set可解决。