web-dev-qa-db-fra.com

erreur de composant primeng dropdown ('p-dropdown' n'est pas un élément connu)

En suivant le guide: https://www.primefaces.org/primeng/ J'ai essayé d'installer PrimeNG pour l'utiliser avec Angular4, en suivant les étapes détaillées ci-dessus, mais le message d'erreur suivant s'affiche:

'p-dropdown' is not a known element:

J'ai essayé de reconstruire les projets, comme suggéré dans d'autres messages, mais cela n'a pas fonctionné pour moi. Des allusions?

Voici tous les détails:

- Installation PrimeNg

npm install primeng --save

- fichier: testdropdown.component.html

<p-dropdown [options]="cities" [(ngModel)]="selectedCity"></p-dropdown>

- fichier: testdropdown.component.ts

import { DropdownModule } from 'primeng/primeng';
import { Component, OnInit } from '@angular/core';
import { SelectItem } from 'primeng/primeng';

@Component({
  selector: 'app-testdropdown',
  templateUrl: './testdropdown.component.html',
  styleUrls: ['./testdropdown.component.css']
})
export class TestdropdownComponent implements OnInit {

  cities: SelectItem[];

  selectedCity: string;

  constructor() {

  this.cities = [];
    this.cities.Push({ label: 'Select City', value: null });
    this.cities.Push({ label: 'New York', value: { id: 1, name: 'New York', code: 'NY' } });
    this.cities.Push({ label: 'Rome', value: { id: 2, name: 'Rome', code: 'RM' } });
  }

  ngOnInit() {
  }

}

-- Erreur:

VM1128:185 [CodeLive] HTTP detected: Connecting using WS
zone.js:630 Unhandled Promise rejection: Template parse errors:
Can't bind to 'options' since it isn't a known property of 'p-dropdown'.
1. If 'p-dropdown' is an Angular component and it has 'options' input, then verify that it is part of this module.
2. If 'p-dropdown' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("<p-dropdown [ERROR ->][options]="cities" [(ngModel)]="selectedCity"></p-dropdown>
"): ng:///AppModule/TestdropdownComponent.html@0:12
'p-dropdown' is not a known element:
1. If 'p-dropdown' is an Angular component, then verify that it is part of this module.
2. If 'p-dropdown' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("[ERROR ->]<p-dropdown [options]="cities" [(ngModel)]="selectedCity"></p-dropdown>
5
Luigi Rubino

Importez le module déroulant dans le module où vous déclarez votre composant.

import {DropdownModule} from 'primeng/primeng';

@NgModule({
  imports: [
   DropdownModule
  ],
  declarations: [TestdropdownComponent ]

})
export class myModule { }
11
Eduardo Vargas

Si le problème persiste, vous devrez peut-être tester une dernière chose: si "FormsModule" est importé, sinon importez-le et essayez, 

import { FormsModule } from '@angular/forms';
import { DropdownModule } from 'primeng/primeng';

@NgModule({
  imports: [
    DropdownModule,
    FormsModule
  ],

Cela devrait résoudre le problème. 

3
Karthik H

Vous devez ajouter DropdownModule dans la section imports dans le module d'application ou le module dans lequel la TestdropdownComponent est déclarée.

1
harilalkm
Root module file like: app.module.ts. Added something like that. 

import {DropdownModule, AccordionModule, SharedModule, ButtonModule, PanelModule, RadioButtonModule, MessagesModule, KeyFilterModule, FieldsetModule, MessageModule, CalendarModule} from 'primeng/primeng';

@NgModule({
  imports: [
   DropdownModule,
   BrowserModule,
   BrowserAnimationsModule,
   FormsModule,
   AccordionModule,
   PanelModule,
   ButtonModule,
   RadioButtonModule,
   TableModule,
   HttpClientModule,
   ReactiveFormsModule,
   SharedModule,
   MessagesModule,
   KeyFilterModule,
   FieldsetModule,
   CalendarModule,
   MessageModule
  ],
  declarations: [TestdropdownComponent ]

})
export class myModule { }
1
Bipon Biswas