filteredTodos 메소드가 필터 메소드를 호출할 때 어떻게 배열을 갖는지 묻고 싶습니다. 사용법은 무엇입니까? 알아보세요~
大家讲道理2017-05-19 10:20:18
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
는 변수이므로 이렇게 작성해야 합니다🎜