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


TypeScript js.Model.getTpl方法代碼示例

本文整理匯總了TypeScript中js/model.js.Model.getTpl方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript js.Model.getTpl方法的具體用法?TypeScript js.Model.getTpl怎麽用?TypeScript js.Model.getTpl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在js/model.js.Model的用法示例。


在下文中一共展示了js.Model.getTpl方法的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: 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

示例3: 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

示例4: constructor

 constructor(enteredTodo){
     this.enteredTodo = enteredTodo;
     this.m = new Model();
     this.v = new View(this.m.getObj(),
     this.m.getTpl());
 }
開發者ID:sash-ua,項目名稱:sash-ua.github.io,代碼行數:6,代碼來源:controller.ts


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