ExtJSクライアントアプリケーションアーキテクチャ。 パート2

Extjs

前の記事で、このようなトピックに触れました。コードの整理方法、ファサードとは何か、ビルド方法、コンポーネントとは何か。

この中で、3つのことに触れます。コンポーネントアーキテクチャについての議論を続け、プラグインとは何か、そしてそれらがアーキテクチャでどのように役立つかを調べ、その結果、いくつかのヒントを提供します。





モノリシックコンポーネント





フォーラムにアクセスするか、Extの使用例を見ると、ほとんどの場合、さまざまなオブジェクトがファイル全体に散らばって散らばり、最終的に1つのコンポーネントにアタッチされます。 例:



Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  1. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  2. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  3. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  4. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  5. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  6. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  7. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  8. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  9. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  10. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  11. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  12. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  13. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  14. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  15. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  16. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  17. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  18. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  19. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  20. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  21. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  22. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  23. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  24. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  25. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  26. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  27. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  28. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  29. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  30. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  31. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  32. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  33. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  34. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);



  35. Copy Source | Copy HTML /** <br/> * somefile.js <br/> * @copyright (c) 2009, by someone <br/> * @date 20 November 2009 <br/> * <br/> */ function entityAdd(button, e){ /* */ } function entityRemove(button, e){ /* */ } function entityEdit(button, e){ /* */ } var somestore = new Ext.data.JsonStore({ /* */ }); var somewindow = new Ext.Window({ /* */ }) Ext. namespace ( "Application" ); Application.Grid = Ext.extend(Ext.grid.GridPanel, { initComponent: function () { Ext.apply( this , { store: somestore , bbar: new Ext.PagingToolbar({ pageSize: 50 , store: somestore , displayInfo: true , displayMsg: "Displaying accounts {0} - {1} of {2}" , emptyMsg: "No accounts to display" }) , tbar: new Ext.Toolbar({ , items: [{ , text: "Add" , handler: entityAdd },{ , text: "Edit" , handler: entityEdit },{ , text: "Remove" , handler: entityRemove }] }) }); Application.Grid.superclass.initComponent.apply( this , arguments); } }); Ext.reg( "applicationgrid" , Application.Grid);







コンポーネントクラスがリポジトリにアクセスし、そのコンテキスト外で機能することに注意してください。 このアプローチは、多くの問題につながるため、大規模なプロジェクトにはまったく適していません。



これらの問題を解決するために何を提供できますか? 「モノリシック」コンポーネントを作成することをお勧めします。 つまり すべての外部リソースがグリッドクラスのメンバーになるように設計します。 前の例を取り上げると、私が意味するコードは次のとおりです。



Copy Source | Copy HTML



  1. 内線 名前空間"アプリケーション" );
  2. Application.Grid = Ext.extend(Ext.grid.GridPanel、{
  3. initComponent: function (){
  4. //ダイアログボックスを設定します
  5. Ext.apply( this 、{
  6. somewindow: 新しい Ext.Window({ / *ウィンドウ設定* / })
  7. });
  8. //リポジトリを設定します
  9. Ext.apply( this 、{
  10. store: 新しい Ext.data.JsonStore({ / *ストレージ設定* / }); // [1]
  11. });
  12. //ツールバーをカスタマイズします
  13. Ext.apply( this 、{
  14. bbar: 新しい Ext.PagingToolbar({
  15. pageSize:RESOURCES.SETTINGS.RECORDS_PER_PAGE // [2]
  16. 、ストア: this .store
  17. 、displayInfo: true
  18. 、displayMsg: 「{2}のアカウント{0}-{1}を表示しています」
  19. 、emptyMsg: 「表示するアカウントがありません」
  20. })
  21. 、tbar: 新しい Ext.Toolbar({
  22. 、アイテム:[{
  23. 、テキスト: 「追加」
  24. 、ハンドラー: this .entityAdd.createDelegate( this// [3]
  25. }、{
  26. 、テキスト: 「編集」
  27. 、ハンドラー: this .entityEdit.createDelegate( this
  28. }、{
  29. 、テキスト: 「削除」
  30. 、ハンドラー: this .entityRemove.createDelegate( this
  31. }]
  32. })
  33. });
  34. Application.Grid.superclass.initComponent.apply( this 、引数);
  35. }
  36. 、onDestroy: function (){
  37. this .somewindow.destroy();
  38. Application.Grid.superclass.onDestroy.call( this );
  39. }
  40. 、entityAdd: 関数 (ボタン、e){ / *エンティティを追加するためのコード* / }
  41. 、entityRemove: 関数 (ボタン、e){ / *エンティティ削除コード* / }
  42. 、entityEdit: function (button、e){ / *エンティティ編集コード* / }
  43. 、somewindow:未定義
  44. });
  45. Ext.reg( "applicationgrid" 、Application.Grid);




[1]少なくとも2つのExt.applyブロックが必要です。 1つ目はリポジトリを設定することであり、2つ目はページネータを設定することです。 理由:リポジトリとページネータの定義を1つのExt.applyブロックに入れると、ページネータはthis.storeによってリポジトリを参照できなくなります(this.storeブロックが実行されるまで、未定義を保存します)。



[2] 前の記事を参照



[3] createDelegateの説明については、 こちらをご覧ください 。 また、ExtJSのスコープを簡単に伝える価値があります(多くの場合、構成内の関数またはプロパティへの引数として表示されます)。 チュートリアルには、フレームワークでこの人気のある用語についてアクセス可能な説明があります。 ただし、単純な場合、スコープはコンテキストとして関数に渡されるオブジェクトです(つまり、関数内のthisはスコープの値と等しくなります)。



それで、コンポーネント設計に対するモノリシックなアプローチで何が得られるでしょう。 createDelegateと組み合わせて、予測可能な動作を持つコンポーネントを取得し、上記のすべての問題を取り除きます。 これまでのところ、この設計方法は私を決して失敗させたことがなく、経験が示すように、チュートリアルで説明するスカラーではなく、OOPのかなり良い実装を取得します。



コンポーネント設計の微妙な点をいくつか調べた後、次のトピックであるプラグインのトピックに進むことができます。



プラグイン





Ext.Componentクラスの各子孫にはpluginsプロパティがあります。 プラグインは通常の関数にすることができます(このオプションはテストしていません)が、ほとんどの場合、必要なinitメソッドのみを持つExt.util.Observableの子孫です。 それらの書き方をここに書いています 。 そして、プラグインとコンポーネントを使用した設計アプローチの違いを説明する簡単な記事があります。 記事を簡単に説明すると、次のようなものが出てきます。プラグインはコンポーネントの小さなアドオンに適しています。 これらは、コンポーネントから簡単に追加および削除できます。 コンポーネントはアプリケーションにより多く結び付けられ、クラスの一般的な外観の設計に適しています。



これらの記事を少し拡張したいと思います。 最初に、ページングを設計するとき、どのようなコンテキストで使用できるかを検討します。 たとえば、グリッドに機能を追加する場合は、ドロップダウンリストでプラグインのコレクションにプラグインを簡単に追加できることを考慮する必要があります。 このような操作を確認するのは非常に簡単です。



Copy Source | Copy HTML



  1. 内線 名前空間"Ext.ux" );
  2. Ext.ux.Plugin = Ext.extend(Ext.util.Observable、{
  3. init: function (grid){
  4. if (grid instanceof Ext.grid.GridPanel){
  5. this .grid = grid;
  6. / *コードの残りの部分* /
  7. }
  8. }
  9. / *その他* /
  10. });
  11. Ext.preg( "ourplugin" 、Ext.ux.Plugin);




initメソッドは、親のインスタンスを取得します。 つまり プラグインコレクションにプラグインを持つオブジェクト。 あとは、目的のクラスに属していることを確認するだけです。



プラグインを設計するときは、親オブジェクトのライフサイクルも考慮する必要があります。 たとえば、まだレンダリングされていないコンポーネントにプラグインを追加できます。 そして、これは、子の遅延初期化では、それらにアクセスできないことを意味します。 取得できるのは、その子の構成だけです。 したがって、親コンポーネントをレンダリングした後にすべてのアクションを実行することが望ましいです。 これも非常に簡単です。 対応するイベントを購読します。



Copy Source | Copy HTML



  1. 内線 名前空間"Ext.ux" );
  2. Ext.ux.Plugin = Ext.extend(Ext.util.Observable、{
  3. init: function (grid){
  4. if (grid instanceof Ext.grid.GridPanel){
  5. this .grid = grid;
  6. if (grid.rendered){
  7. //既にレンダリングされた親コンポーネント、つまり
  8. //コンポーネントのレンダリング後に追加されたプラグイン。
  9. this .onRender();
  10. } else {
  11. //それ以外の場合、レンダリングイベントにサブスクライブします
  12. //親コンポーネント
  13. grid.on({
  14. スコープ: これ
  15. 、シングル: true
  16. 、レンダリング: this .onRender
  17. 、再構成: this .onRender
  18. });
  19. }
  20. }
  21. }
  22. 、onRender: function (){
  23. / *親コンポーネントがレンダリングされます。 あなたは仕事を始めることができます* /
  24. }
  25. });
  26. Ext.preg( "ourplugin" 、Ext.ux.Plugin);




これで、プラグインをグリッドに自由に追加したり、グリッドから削除したりできます。 また、コンポーネントの場合と同様に、プラグインが削除されたときにメモリのクリアを慎重に処理する必要があります。



Paginsを使用すると、プロジェクトのコード量を半分に減らすことができました。なぜなら、それらの前に、継承による機能拡張を実装したからです。



プラグインとコンポーネントに加えて、/ js / resourcesからのファイルを介して機能を拡張する別の方法があります。 アプリケーションが既に成長しており、グリッドからさまざまな種類のコンポーネント継承を持っているとします。 ただし、ここでは、ロード時にすべてのグリッドが最初の行を選択するという要件があります。 行動を再定義する機会は救助に来ます。 / js / resourcesのファイルには、次のように簡単に記述できます。



Copy Source | Copy HTML



  1. 内線 オーバーライド (Ext.grid.GridView、{
  2. onLoad:Ext.grid.GridView.prototype.onLoad.createSequence( function (){
  3. ifthis .grid.store && this .grid.getSelectionModel()。selectFirstRow){
  4. this .grid.getSelectionModel()。selectFirstRow.defer( 1this .grid.getSelectionModel());
  5. }
  6. })
  7. });




同様に、たとえば、行を削除するときに次/前の行を強調表示したり、追加したばかりの行を強調表示するなどの問題を解決できます。



これでプラグインのトピックを終了し、アプリケーションの機能を拡張します。 結論として、私はいくつかの提言をしたいと思います。



ヒントとコツ





私の例では、式の前にコンマを入れていることにすでに気付いています。 この習慣はExtに固有のものではありませんが、どこかにコンマを置くのを忘れたり、逆に最後の要素の後にコンマを置くことを忘れると(特にIEでは慎重です)、検出が難しいエラーが発生します。 コンマを付けるこの方法を使用すると、カンマに関連するエラーの数が大幅に削減されます。



大規模なアプリケーションを設計するときは、Extの1つのバージョンにバインドし、 変更しないでください 。 3番目のブランチでは、3.0.0のコードが3.0.1で機能しない、またはエラーが発生するという事実に関連する多くの不快な瞬間を見つけました。



API APIドキュメントで、Extはそのクラスのソースコードを表示することを可能にします。 そこをのぞくことを恐れないでください。 あなたは多くの新しいものを発見するでしょう。



この記事を書いている時点でのグラフのAPIは、ほとんどカバーされていません。 前のヒントを活用し、Extの例のグラフも調べてください。



これで、記事を終了します。 彼女が誰かを助けることを願っています。



All Articles