angular.js - Angular 2: 如何在运行时自动引入 normalize.css 文件?
问题描述
最近学习 Angular 2 的时候发现 HTML 5 的通病 body margin:8px 依然存在,就像引入 normalize.css 丢弃这些不需要的样式。
传统的方式是直接引入 .css 文件,如:<link rel='stylesheet' href='https://www.haobala.com/wenda/node_modules/normalize.css/normalize.css' /> ,但是我现在想让 Angular 通过 import 模块的方式自动为 index.html 引入 normalize.css 样式表。
我先是按照之前引入 Material 2 的方式:
// angular-cli-build.jsmodule.exports = function(defaults) { return new Angular2App(defaults, { vendorNpmFiles: [ ’normalize-path/index.js’, ] });};
// system-config.ts const map: any = { ’normalize’: ’vendor/normalize-path’,};/** User packages configuration. */const packages: any = { ’normalize’: {main: ’index.js’},};
// app.component.tsimport { normalize } from ’normalize-path’;
这时编辑器会提示:
Cannot find module ’normalize-path’.
并且编译也不通过,也许我的出发点是错的。
我尝试去 stackoverflow 寻找答案但是没有找到,Google 也没找到相关问题的博文或讨论。
问题解答
回答1:oc.lazyLoad试试
回答2:建议使用angular-cli来开发在.angular-cli.json中配置:
'styles': ['styles.css','../node_modules/normalize.css/normalize.css' ]
相关文章:
1. PHP怎么升级?升级会导致老的网站程序不能用吗?2. node.js - win10如何安装并使用babel?3. mysql插入文本如果是个sql语句就报错了4. python - celery beat 调度如何运行期间动态添加任务?5. python - 字符串里的u’u00a1’怎么打印成中文6. javascript - onclick事件点击不起作用7. thinkphp3.2.3对接新版支付宝8. php - 两个表数据怎么插到一个模板中,并按时间排序?9. java - 单例模式中生成的对象是否都要是无状态的?10. objective-c - 使用axios 通过vuex mutation修改数据 getter第一次获取失败 第二次成功

网公网安备