Below I will share with you a solution to the error report after angularjs uses gulp-uglify compression. It has a good reference value and I hope it will be helpful to everyone.
The reason for the problem is that after compression, the variables become e, s, t, etc. The methods that require dependency injection do not use square bracket injection, but are used directly in the parameters of the function, resulting in unrecognizable after compression. Modules that require dependency injection. For example:
var module= angular.module('homeApp', ['ui.router']); module.config(function ($sceProvider) { $sceProvider.enabled(false); })
is changed to:
var module= angular.module('homeApp', ['ui.router']); module.config(['$sceProvider',function ($sceProvider) { $sceProvider.enabled(false); }])
After using gulp-uglify compression again, the execution is normal.
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Using Axios Element to implement global request loading
Select selector multi-selection verification method in iview
nodejs example of how to connect to mongodb database
The above is the detailed content of Solution to error reported after angularjs uses gulp-uglify compression. For more information, please follow other related articles on the PHP Chinese website!