javascript 揭示模块模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 揭示模块模板相关的知识,希望对你有一定的参考价值。

export const Thing = (function(options) {
	let defaults = {

	}

	const BuildThing = function(options) {
		let publicAPIs = {}
		let settings;

		// Private Methods

		// PublicAPI
		publicAPIs.init = function(options) {
			settings = extend(defaults, options || {}); //lodash, combine options with the defaults, overriding defaults
		}

		publicAPIs.init(options);

		return publicAPIs;
	}

	return BuildThing;
})(window, document);

以上是关于javascript 揭示模块模板的主要内容,如果未能解决你的问题,请参考以下文章

javascript 揭示此viedeo中描述的模块模式https://www.youtube.com/watch?v=pOfwp6VlnlM

《SPA设计与架构》之JavaScript模块化

javascript 阅读更多揭示完整内容

揭示模块化数据中心的真谛

专家揭示模块化数据中心的真谛

Javascript模块模式模板