将我的应用程序从RC5升级到RC6时,我开始收到此错误:
zone.js:484 Unhandled Promise rejection: Template parse errors:
'row' is not a known element:
1. If 'row' is an Angular component, then verify that it is part of this module.
2. If 'row' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message. ("
<div class="col-lg-12">
<div *ngIf="!selectedAsset">
[ERROR ->]<row>
<h1 class="page-header">Thumbnail Gallery</h1>
该错误引用了我过去从未遇到过问题的标准引导行元素。我需要做什么才能使引导元素在RC6中再次工作?
注意:我现在已将应用更新到Angular2.0.0版本。仍然有同样的问题。
答案 0 :(得分:0)
尝试在模板顶部添加<!DOCTYPE html>
。