我有一些常用功能需要通过我的 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; };
您如何创建类似于模块的东西,这些函数可以进入,然后只是“必需”或导入/加载到每个文件中,而不是如此不干燥并在每个文件中包含我需要使用它的函数?