我已使用bower将lodash
安装到我的 angularjs 应用中:
bower install --save lodash
bower.json会相应更新:
{
"name": "my-app",
"version": "0.0.0",
"dependencies": {
"lodash": "^4.11.2",
"angular": "~1.4.0",
"json3": "~3.2.4",
"jquery": "~1.10.0",
"sass-bootstrap": "~3.0.0",
"es5-shim": "~2.1.0",
"angular-resource": "~1.4.0",
"angular-cookies": "~1.4.0",
"angular-sanitize": "~1.4.0",
"angular-route": "~1.4.0",
"angular-ui": "~0.4.0"
},
"devDependencies": {
"angular-mocks": "~1.4.0",
"angular-scenario": "~1.4.0"
}
}
lodash
目录已添加到bower_components
目录,并且我已运行grunt server
。但是,lodash的<script>
标记未添加到index.html
。
如何在安装了凉亭后将lodash
添加到我的应用中? FWIW,我已经成功安装了其他前端组件并且没有解决这个问题,所以要么我做了不同的事情,要么我的环境发生了变化。
我不确定如何调查此问题。