filters[this.visibility] 이것은 배열이 아니라 호출 객체 아래의 메서드입니다. filters[this.visibility] 这里不是数组,是调用对象下的方法。
this.visibility的结果可能有三个 all, active, completed 所以最终是个类似于这样的东西:
filters['all'] 就相当于调用了 filters 对象下的 all 方法,因为 this.visibility
this.visibility의 결과는 all, active, completed의 세 가지일 수 있으므로 결국 이런 것입니다 :🎜
🎜filters['all']는 filters 개체 아래에서 all 메서드를 호출하는 것과 같습니다. this.visibility이기 때문입니다. >는 변수이므로 이렇게 작성해야 합니다🎜
filters[this.visibility]
이것은 배열이 아니라 호출 객체 아래의 메서드입니다.filters[this.visibility]
这里不是数组,是调用对象下的方法。this.visibility
的结果可能有三个all
,active
,completed
所以最终是个类似于这样的东西:filters['all']
就相当于调用了filters
对象下的all
方法,因为this.visibility
this.visibility
의 결과는all
,active
,completed
의 세 가지일 수 있으므로 결국 이런 것입니다 :🎜 🎜filters['all']
는filters
개체 아래에서all
메서드를 호출하는 것과 같습니다.this.visibility
이기 때문입니다. >는 변수이므로 이렇게 작성해야 합니다🎜