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
BoxGroup#parseValue 实现是直接使用 value.split(',')
在遇到空字符串的时候,会解析为 [""], 这导致 getRawValue 的时候出现预期外的值。
在选项值不包含空字符串的场景,是希望能够解析为 [];
而在选项值包含空字符串的场景,希望能够解析为 [""]; 否则会导致只能通过 rawValue 的方式去设置空字符串的选项。
The text was updated successfully, but these errors were encountered:
同意这个说法
Best regards
Gray Zhang
在 2015年11月25日 下午6:38:27, Exodia ([email protected]) 写到:
— Reply to this email directly or view it on GitHub.
Sorry, something went wrong.
No branches or pull requests
BoxGroup#parseValue 实现是直接使用 value.split(',')
在遇到空字符串的时候,会解析为 [""], 这导致 getRawValue 的时候出现预期外的值。
在选项值不包含空字符串的场景,是希望能够解析为 [];
而在选项值包含空字符串的场景,希望能够解析为 [""]; 否则会导致只能通过 rawValue 的方式去设置空字符串的选项。
The text was updated successfully, but these errors were encountered: