Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Sproutcore 代码中有一些文本字段。但是,我需要检查文本字段的输入验证。
有什么机制可以像传统的 html/js 那样做吗?你能附上一些代码吗?谢谢。
目前我只使用警报()。
假设您正在使用SC.TextFieldView,您可以使用 Validator。这是一个例子:
SC.TextFieldView
SC.TextFieldView.design({ validator: 'Number', maxLength: 20, }),
您可以创建自己的验证器来满足您的需求。有关示例和文档,请查看:
sproutcore/frameworks/foundation/validators