摘要:最近在學習發(fā)現(xiàn)一篇文章中有錯誤,網(wǎng)上很多人都是直接復制粘貼那篇文章,結果每個人注釋中都是寫的正確的答案,我也是醉了,這些猿么復制粘貼代碼都不帶檢查的么,為啥都變得很浮躁了呢。
最近在學習extjs4發(fā)現(xiàn)一篇文章中有錯誤,網(wǎng)上很多人都是直接復制粘貼那篇文章,結果每個人注釋中都是寫的正確的答案,我也是醉了,這些猿么復制粘貼代碼都不帶檢查的么,為啥都變得很浮躁了呢。
現(xiàn)提供可以調試的代碼:
html文件很簡單,就引入ext資源和自定義的js文件就可以了。
測試配置
js文件就是定義了2個類,一個window,一個bottomBar,其中window中包含bottomBar對象,具體代碼如下:
/** * Created by catcher on 2016-3-30. */ Ext.define("My.own.Window",{ /** @readonly */ isWindow:true, config:{ title:"This title", bottomBar:{ enable:false, height:10, resizable:false } }, constructor:function(config){ this.initConfig(config); return this; }, applyTitle:function(title){ if(!Ext.isString(title)||title.length==0){ alert("Error: Title must be a valid non-empty string!"); }else{ return title; } }, applyBottomBar:function(bottomBar){ if(bottomBar && bottomBar.enable){ if(!this.bottomBar){ return Ext.create("My.own.WindowBottomBar",bottomBar); }else{ this.bottomBar.setConfig(bottomBar); } } } }); Ext.define("My.own.WindowBottomBar",{ config:{ enable:true, height:10, resizable:false }, constructor:function(config){ this.initConfig(config); return this; } }); var myWindow = Ext.create("My.own.Window", { title: "Hello World", bottomBar: { enable: true, height: 60, resizable: true } }); console.log(myWindow.getTitle()); // "Hello World" myWindow.setTitle("Something New"); console.log(myWindow.getTitle()); // "Something New" myWindow.setTitle(null); // alerts "Error: Title must be a valid non-empty string!" console.log(myWindow.getBottomBar().getHeight()); myWindow.setBottomBar({enable:true,height:100}); // Bottom bar"s height is changed to 100 console.log(myWindow.getBottomBar().getHeight());
文章版權歸作者所有,未經(jīng)允許請勿轉載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉載請注明本文地址:http://systransis.cn/yun/50345.html
摘要:最近在學習發(fā)現(xiàn)一篇文章中有錯誤,網(wǎng)上很多人都是直接復制粘貼那篇文章,結果每個人注釋中都是寫的正確的答案,我也是醉了,這些猿么復制粘貼代碼都不帶檢查的么,為啥都變得很浮躁了呢。 最近在學習extjs4發(fā)現(xiàn)一篇文章中有錯誤,網(wǎng)上很多人都是直接復制粘貼那篇文章,結果每個人注釋中都是寫的正確的答案,我也是醉了,這些猿么復制粘貼代碼都不帶檢查的么,為啥都變得很浮躁了呢。 現(xiàn)提供可以調試的代碼: ...
摘要:學習之道簡體中文版通往實戰(zhàn)大師之旅掌握最簡單,且最實用的教程。前言學習之道這本書使用路線圖中的精華部分用于傳授,并將其融入一個獨具吸引力的真實世界的具體代碼實現(xiàn)。完美展現(xiàn)了的優(yōu)雅。膜拜的學習之道是必讀的一本書。 《React 學習之道》The Road to learn React (簡體中文版) 通往 React 實戰(zhàn)大師之旅:掌握 React 最簡單,且最實用的教程。 showIm...
摘要:前言設置項目的域名站點的時候,需要對做一些對應的重寫配置,用來做相關路由,否則會報。 前言 設置laravel項目的域名站點的時候,需要對nginx做一些對應的重寫rewrite配置,用來做相關路由,否則會報404。 nginx.conf配置 server { listen 80; server_name xxx.com; #域名 root /data/www...
摘要:前言設置項目的域名站點的時候,需要對做一些對應的重寫配置,用來做相關路由,否則會報。 前言 設置laravel項目的域名站點的時候,需要對nginx做一些對應的重寫rewrite配置,用來做相關路由,否則會報404。 nginx.conf配置 server { listen 80; server_name xxx.com; #域名 root /data/www...
閱讀 1146·2019-08-30 12:44
閱讀 653·2019-08-29 13:03
閱讀 2562·2019-08-28 18:15
閱讀 2431·2019-08-26 10:41
閱讀 3092·2019-08-26 10:28
閱讀 3040·2019-08-23 16:54
閱讀 1992·2019-08-23 15:16
閱讀 817·2019-08-23 14:55