我创建了一个新的Angular 10应用程序(也尝试了ng 8和9):
primeng-menu>ng new primeng-menu
已安装PrimeNG模块:
npm install primeng --save和npm install primeicons --save
package.json:
"dependencies": {
"@angular/animations": "~10.1.1",
"@angular/common": "~10.1.1",
"@angular/compiler": "~10.1.1",
"@angular/core": "~10.1.1",
"@angular/forms": "~10.1.1",
"@angular/platform-browser": "~10.1.1",
"@angular/platform-browser-dynamic": "~10.1.1",
"@angular/router": "~10.1.1",
"primeicons": "^4.0.0",
"primeng": "^10.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},angular.json:
"styles": [
"node_modules/primeng/resources/primeng.min.css",
"node_modules/primeicons/primeicons.css",
"src/styles.css"
],app.component.ts:
import { Component, OnInit } from '@angular/core';
import { MenuModule } from 'primeng/menu';
import { MenuItem, MessageService } from 'primeng/api';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
items: MenuItem[];
constructor(private messageService: MessageService) { }
ngOnInit() {
this.items = [{
label: 'Options',
items: [{
label: 'Update',
icon: 'pi pi-refresh',
command: () => {
this.update();
}
},
{
label: 'Delete',
icon: 'pi pi-times',
command: () => {
this.delete();
}
}
]
},
{
label: 'Navigate',
items: [{
label: 'Angular Website',
icon: 'pi pi-external-link',
url: 'http://angular.io'
},
{
label: 'Router',
icon: 'pi pi-upload',
routerLink: '/fileupload'
}
]
}
];
}
update() {
this.messageService.add({ severity: 'success', summary: 'Success', detail: 'Data Updated' });
}
delete() {
this.messageService.add({ severity: 'warn', summary: 'Delete', detail: 'Data Deleted' });
}
}app.component.html:
<h5>Basic</h5>
<p-menu [model]="items"></p-menu>
<h5>Overlay</h5>
<button type="button" pButton icon="pi pi-bars" label="Show" (click)="menu.toggle($event)"> </button>
<p-menu #menu [popup]="true" [model]="items"></p-menu>当我运行ng serve时,它不会编译。我得到了error NG8001: 'p-menu' is not a known element:
ERROR in src/app/app.component.html:3:1 - error NG8001: 'p-menu' is not a known element:
1. If 'p-menu' is an Angular component, then verify that it is part of this module.
2. If 'p-menu' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3 <p-menu [model]="items"></p-menu>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/app/app.component.ts:7:16
7 templateUrl: './app.component.html',
~~~~~~~~~~~~~~~~~~~~~~
Error occurs in the template of component AppComponent.
src/app/app.component.html:3:9 - error NG8002: Can't bind to 'model' since it isn't a known property of 'p-menu'.
1. If 'p-menu' is an Angular component and it has 'model' input, then verify that it is part of this module.
2. If 'p-menu' 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.
3 <p-menu [model]="items"></p-menu>我遵循了PrimeNG网站上的所有说明。我错过了什么吗?还有没有人让PrimeNG10 Menu使用Angular?
发布于 2020-09-16 10:06:03
PrimeNG的Getting Started和/或Menu文档没有提到以下内容:
在app.module.ts中,您需要导入:
import { MenuModule } from 'primeng/menu';
import { ButtonModule } from 'primeng/button';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
并将它们添加到导入中。
在index.html的标题中添加此链接<link rel="stylesheet" type="text/css" href="/node_modules/primeicons/primeicons.css" />。
在angular.json中添加主题样式"node_modules/primeng/resources/themes/saga-blue/theme.css",
在app.component.ts中,使用来自'primeng/api‘的, private primengConfig: PrimeNGConfig更新构造函数。
将此语句添加到ngOnInit this.primengConfig.ripple = true;的顶部
发布于 2020-09-16 06:04:48
有一件事您忘记了,那就是向app.module.ts中添加枚举模块
import {MenuModule} from 'primeng/menu';
@NgModule({
imports: [ Menumodule]
})
export class AppModule { }https://stackoverflow.com/questions/63907332
复制相似问题