ExtJS4 アプリケーションの複数のファイルで再利用する必要がある一般的な関数がいくつかあります。いくつかの例を次に示します。
https://gist.github.com/e651c32039dfdc60635d
または、リンクに移動したくない場合:
/* This adds a method to String objects that allows you to test
* whether or not a certain character or string exists in a target
* string. In raw JS you need to check for .indexOf("test") !== -1
*/
String.prototype.contains = function( it ) { return this.indexOf( it ) !== -1; };
これらの関数が入ることができるモジュールのようなものをどのように作成し、それを使用する必要がある各ファイルに関数を含めるのではなく、各ファイルに「必要」またはインポート/ロードすることができますか?