我将 material-bootstrap 脚本包含到我的 Angular 项目的 index.html 中,但它们需要手动重新包含在视图中才能工作。
这很奇怪,因为插入到 Angular 中的所有其他脚本都不会发生这种情况。
索引.html
<script src="bower_components/bootstrap-material-design/scripts/material.js"></script>
<script src="bower_components/bootstrap-material-design/scripts/ripples.js"></script>
我还注意到 material-bootstrap 不能很好地与 Grunt 和 Bower 配合使用,并且往往会在构建时自行删除(因此手册包含在页面底部)。
这些已知的错误是 Material-boostrap 和 Angular/Bower/Grunt 还是我做错了什么?
如果您还需要什么,请告诉我!
编辑:
bower.json 中的依赖项
"dependencies": {
"angular": "~1.3.0",
"json3": "~3.3.1",
"es5-shim": "~3.1.0",
"bootstrap": "~3.2.0",
"angular-resource": "~1.3.0",
"angular-cookies": "~1.3.0",
"angular-sanitize": "~1.3.0",
"angular-animate": "~1.3.0",
"angular-touch": "~1.3.0",
"angular-route": "~1.3.0",
"bootstrap-material-design": "*",
"jsjws": "~3.0.2",
"angular-ui-router": "0.2.11"
}