标签: javascript angularjs underscore.js lodash
在我的项目中,一个模块使用下划线库实现。现在继续我们需要使用lodash。在项目中注入lo-dash angular.module('myModule').constant('_', window._);我们必须依赖窗口。 由于我们在同一个项目中使用下划线库,因此“window._”也可以访问它。由于它们都使用“window._”,因此一个模糊不清。这是什么解决方案?我在角度JS项目中使用它。
angular.module('myModule').constant('_', window._);
window._