https://github.com/alibaba/we... 中的第180行
const keyEl = this.$refs['index-item-title-' + key][0];
method调用这个refs[][],平时没见过,问下各位大佬这种$refs后面跟着方括号方括号是什么用法?
一般怎么用,方括号里面是什么意思或者给个电梯,或者文档什么的。
我看官方api或者百度找到的里面用refs都是this.$refs.xxx.xxx
代码是VUE.js写的,github那个是weex-ui
refs引用
比如
this.$refs['formName']
或者this.$refs.formName
就能取到这个formthis.$refs['index-item-title-' + key][0]
;是因为这个ref需要拼接。对象属性是变量的时候用方括号[]拼接
比如