2016-12-28 29 views
0

我在我的角2应用程序中实现ng2-bootstrap datePicker,但遇到某种类型的模块错误,我不明白背后的问题是什么。请帮助我。ng2-boostrap datePicker执行错误

module.ts

import { DatepickerModule } from 'ng2-bootstrap/datepicker'; 

@NgModule({ 
    imports: [ 
    ........... 
    DatepickerModule 
    ........... 
    ], 
    declarations: [ 
    ..... 
    ..... 
    ] 
}) 
export default class Modules { 
} 

HTML文件

<div> 
    <datepicker></datepicker> 
</div> 

错误

'datepicker' is not a known element: 
1. If 'datepicker' is an Angular component, then verify that it is part of this module. 
2. If 'datepicker' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message. ("<div class="form-group"><div> 
          [ERROR ->]<datepicker></datepicker> 
          <!--<datepicker [expanded]="true" class="danger"-"): [email protected]:26 
Can't bind to 'expanded' since it isn't a known property of 'datepicker'. ("        <div> 
                <datepicker [ERROR ->][expanded]="true" class="danger" 
                   form"): [email protected]:64 
'datepicker' is not a known element: 
+0

您的'AddCustomer' TS文件? –

回答

0

有你在你的应用程序包括。 module.ts Boostrap的lib?像这样:

​​