我正在尝试从以下示例中学习Grunt任务 https://github.com/song-rate-mvc/angular-song-rate/tree/0.0.3
在命令npm install之后,在Grunt Dev期间安装bower,我在app.js文件中得到以下错误“ReferenceError:找不到变量:_”
错误发生在
文件app.js中angular.module("myApp", [
'myApp.filters',
'myApp.services',
'myApp.directives',
'myApp.controllers'
]);
//error occurs in the below line.
_.mixin(_.string.exports());
我错过了什么......