當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript view.js.View類代碼示例

本文整理匯總了TypeScript中js/view.js.View的典型用法代碼示例。如果您正苦於以下問題:TypeScript js.View類的具體用法?TypeScript js.View怎麽用?TypeScript js.View使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了js.View類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: delOneTodo

 delOneTodo(e){
     let el = e.target.getAttribute('data-id'),
         locMapObj = this.m.removeItem(el);
     this.htmlRender();
     View.insert(this.m.getTpl().el[1], locMapObj.size);
     Model.delClass(this.m.getTpl().classItem[2]);
 }
開發者ID:sash-ua,項目名稱:sash-ua.github.io,代碼行數:7,代碼來源:controller.ts

示例2: checkInputTodo

 checkInputTodo(e) {
     if(e.keyCode === 13 && e.target.value.replace(/(\s)+/g, '').length > 0 ){
         Model.delClass(this.m.getTpl().classItem[2]);
         if(e.target.id === 'todos__insert-item'){
             this.m.addTodoItem(e.target);
             e.target.value = '';
             this.htmlRender();
             View.insert(this.m.getTpl().el[1], this.m.getObj().size);
         } else {
             let el = e.target.getAttribute('data-id');
             this.m.editTodo(el, e.target.value, this.m.getObj());
             this.htmlRender();
             View.insert(this.m.getTpl().el[1], this.m.getObj().size);
             Model.addClass(el, this.m.getTpl().classItem[3], 2);
         }
     }
     e.target.removeEventListener('keypress', this.checkInputTodo);
 }
開發者ID:sash-ua,項目名稱:sash-ua.github.io,代碼行數:18,代碼來源:controller.ts

示例3: filters

 filters(e){
     let objLocal = this.m.filters(e),
         classesList = e.target.classList;
     this.htmlRender(objLocal);
     Model.addClass(this.m.getTpl().el[2], this.m.getTpl().classItem[2], 3, classesList);
     if(objLocal){
         //insert quantity of todos.
         View.insert(this.m.getTpl().el[1], objLocal.size);
     }
 }
開發者ID:sash-ua,項目名稱:sash-ua.github.io,代碼行數:10,代碼來源:controller.ts

示例4: htmlRender

 htmlRender(mapObj = this.m.getObj()){
     this.v.renderTpl(mapObj);
     this.m.checkView(this.m.getObj(), this.m.getTpl());
 }
開發者ID:sash-ua,項目名稱:sash-ua.github.io,代碼行數:4,代碼來源:controller.ts


注:本文中的js/view.js.View類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。