Skip to content
New issue

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 方法对空字符串解析的讨论 #536

Open
Exodia opened this issue Nov 25, 2015 · 1 comment
Open

BoxGroup#parseValue 方法对空字符串解析的讨论 #536

Exodia opened this issue Nov 25, 2015 · 1 comment

Comments

@Exodia
Copy link

Exodia commented Nov 25, 2015

BoxGroup#parseValue 实现是直接使用 value.split(',')

在遇到空字符串的时候,会解析为 [""], 这导致 getRawValue 的时候出现预期外的值。

在选项值不包含空字符串的场景,是希望能够解析为 [];

而在选项值包含空字符串的场景,希望能够解析为 [""]; 否则会导致只能通过 rawValue 的方式去设置空字符串的选项。

@otakustay
Copy link
Member

同意这个说法

Best regards

Gray Zhang

在 2015年11月25日 下午6:38:27, Exodia ([email protected]) 写到:

BoxGroup#parseValue 实现是直接使用 value.split(',')

在遇到空字符串的时候,会解析为 [""], 这导致 getRawValue 的时候出现预期外的值。

在选项值不包含空字符串的场景,是希望能够解析为 [];

而在选项值包含空字符串的场景,希望能够解析为 [""]; 否则会导致只能通过 rawValue 的方式去设置空字符串的选项。


Reply to this email directly or view it on GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants