만들면서 학습하는 리액트(react):준비편 - 순수JS - 010

최대 1 분 소요

준비편 - 순수JS

[순수JS 1] 추천 검색어 3

요구사항

목록에서 검색어를 클릭하면 선택된 검색어의 검색 결과 화면으로 이동한다

구현

  • SearchFormView.js 수정
...
export default class SearchFormView extends View { 
  ...
  show(value = "") {
    this.inputElement.value = value;
    this.showResetButton(this.inputElement.value.length > 0);
    super.show();
  }
}
  • Controller.js 수정
...
export default class Controller {
  ...
  renderSearchResult() {
    this.searchFormView.show(this.store.searchKeyword);
    this.tabView.hide();
    this.keywordListView.hide();
    ...
  }
}

참고