考虑到这种情况,我依赖 fileupload 组件,该组件在 3 个地方以相同的形式使用,并以绑定值区分。
共有 3 个组件在使用中,通过一个变量绑定来区分
在那个特定的隔离控制器中。有值被设置。
我如何才能在特定范围内独立获取这些值?
例子:
<test-component type="abc"></test-component>
组件由一个输入字段组成
<input type="text" ng-model="vm.input" />
内部控制器
vm.type = this.type // abc
vm.input from 1st component will be suppose: 'foo'
vm.input from 2nd component will be suppose: 'boo'
vm.input from 3rd component will be suppose: 'goo'
vm.input
现在要求如果全部输入,则需要形成验证。那么,我怎样才能单独获取这些并进行测试呢?
约束vm.input
已经具有函数绑定。无法更改其名称