我正在尝试在angular2中使用bootstrap。我已分别使用npm install --save bootstrap
和npm install --save jquery
安装了boostrap和jquery依赖项。这是我在 index.html -
<html>
<head>
<link data-require="bootstrap-css@3.3.7" data-semver="3.3.7" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('applicationStartup').catch(function (err) {
console.error(err);
});
</script>
</head>
<body>
<my-app><button class="btn btn-primary">Hello from Angular 2</button></my-app>
</body>
</html>
我在上面的按钮中应用了引导程序样式,但它只显示了纯HTML按钮。我也尝试过使用CDN,但是看不出任何差异。
我还需要做其他配置吗。我在不同的博客上查了但是找不到这个问题的相关答案。
感谢您提供帮助。
答案 0 :(得分:1)
在标题中添加这两个cdn然后它将正常工作:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Optional Bootstrap theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
或者您需要转到项目文件夹并从cmd运行此命令 npm install --save bootstrap 然后转到angular-cli.json文件夹并在json中搜索styles属性并包含 &#34;
styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
],