首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Angular8-10,PrimeNG10 `p-menu`抛出错误

Angular8-10,PrimeNG10 `p-menu`抛出错误
EN

Stack Overflow用户
提问于 2020-09-16 01:49:54
回答 2查看 812关注 0票数 1

我创建了一个新的Angular 10应用程序(也尝试了ng 8和9):

primeng-menu>ng new primeng-menu

已安装PrimeNG模块:

npm install primeng --savenpm install primeicons --save

package.json:

代码语言:javascript
复制
"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:

代码语言:javascript
复制
"styles": [
          "node_modules/primeng/resources/primeng.min.css",
          "node_modules/primeicons/primeicons.css",
          "src/styles.css"
        ],

app.component.ts:

代码语言:javascript
复制
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:

代码语言:javascript
复制
<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:

代码语言:javascript
复制
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?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 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;的顶部

票数 0
EN

Stack Overflow用户

发布于 2020-09-16 06:04:48

有一件事您忘记了,那就是向app.module.ts中添加枚举模块

代码语言:javascript
复制
import {MenuModule} from 'primeng/menu';
@NgModule({
  imports:      [ Menumodule]
})
export class AppModule { }
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/63907332

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档