我按照Getting Started说明为网络添加材料组件,并且我在第4步收到以下错误:
<script>mdc.autoInit()</script>
-> Uncaught ReferenceError: mdc is not defined at (index):17
如上所述,这是一个Angular CLI项目,因此正在从.angular-cli.json
文件加载脚本:
"scripts": [
"../node_modules/material-components-web/dist/material-components-web.js"
]
CLI设置中是否还有其他地方我应该加载文件,或拨打mdc.autoInit()
?
我还查看了Angular 2 Framework Integration示例,但没有任何帮助。它没有使用CLI,也从不调用mdc.autoInit()
。
答案 0 :(得分:-1)
在每个项目中都有一个index.html
文件。你需要把你的脚本放在那里。