Closed webees closed 6 years ago
fieldDecoratorOptions对应getFieldDecorator(id, options) 参数的options,功能很多,不是简单的使用iview方式可以完全实现的,如果习惯了iview的方式,建议自行封装一层。
This thread has been automatically locked because it has not had recent activity. Please open a new issue for related bugs and link to relevant comments in this thread.
由于项目正在从iview迁移过来,所以在使用vue-antd-ui的过程中会有不少的疑问。得知0.6.2支持template语法自动校验功能,于是便和团队一起尝试了下,发现在实际操作中还是有诸多不便,下面仅仅以登陆为例说明。 之前的demo请参考 https://github.com/vueComponent/ant-design/issues/43
1、
:fieldDecoratorOptions="{rules: [{ required: true, message: 'Please input your name' }]}"
改为:fieldDecoratorOptions="[{ required: true, message: 'Please input your name' }]"
会不会好些。 虽然可以这样::fieldDecoratorOptions="{rules: [d_rules]}" 其中d_rules是Vue 实例的数据
,但是我们在将fieldDecoratorOptions绑定到vue实例数据时候:2、:fieldDecoratorOptions是否可能去掉,像iview一样在a-form指定rules
期待得到优化,感谢大家的付出。
下面这个demo是之前iview实现的自动校验,线上正在使用,自动校验基于 async-validator,blur事件也会触发校验。不得不说已经尽量简洁了。