由于错误,预渲染失败:ReferenceError:未使用PrimeNG AutoComplete定义事件

时间:2017-04-16 22:20:22

标签: angular primeng

我正在尝试在我的angular2应用程序中使用PrimgNG(primeng 2.0.5,Angular 2.0.x)。我可以使用ButtonModule和InputTextModule,但不能使用AutoCompleteModule。

我将AutoCompleteModule添加到应用程序后立即收到此错误。

An unhandled exception occurred while processing the request.

Exception: Call to Node module failed with error: Prerendering failed because of error: ReferenceError: Event is not defined

app.component.html:

<button pButton type="button" (click)="onclick()" >Click here</button>
<p-autoComplete [(ngModel)]="text" [suggestions]="results" (completeMethod)="search($event)"></p-autoComplete>

app.component.ts:

import { Component, OnInit } from '@angular/core';
import {ButtonModule, ToggleButtonModule} from 'primeng/primeng';

@Component({
   selector: 'app',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css'],
})

export class AppComponent {
  text: string;
  results: string[];
  search(event){
    this.results = ['1','2','3'];
  }

  onclick():void{
    alert("This is a test");
  }
}

app.module.ts:

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { UniversalModule } from 'angular2-universal';
import { HttpModule } from '@angular/http';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './components/app/app.component'
import {ButtonModule, AutoCompleteModule} from 'primeng/primeng';

@NgModule({
    bootstrap: [AppComponent],
    declarations: [
        AppComponent
    ],
    imports: [
        HttpModule,
        FormsModule,
        RouterModule.forRoot([
            { path: '', redirectTo: 'home', pathMatch: 'full' },
            { path: 'home', component: HomeComponent },
            { path: 'api-list', component: ApiListComponent },
            { path: 'api-add', component: ApiAddComponent },
            { path: '**', redirectTo: 'home', pathMatch: 'full' }
        ]),
        AutoCompleteModule,
        UniversalModule
    ]
})
export class AppModule {
}

如果我删除AutoCompleteModule,一切正常。请帮忙。

3 个答案:

答案 0 :(得分:11)

我能够通过更改ASP.Net核心模板生成的Index.cshtml页面中的asp-prerender标记来解决这个问题。我从我的问题中忽略了关于ASP.Net核心模板的观点。

我从

更改了标签
<app asp-ng2-prerender-module="ClientApp/dist/main-server">Loading...</app>

{{1}}

答案 1 :(得分:2)

刚刚取消预渲染。

<app>Loading...</app>

几周后我在stackoverflow上找到了这个答案,试图再次搜索它以将其链接到这里,但是没有产生任何结果。如果有人发现它,请在此处链接。谢谢

答案 2 :(得分:0)

使用以下

1..Loading .... 2.boot。 Browser.t s或boot.client.ts文件导入以下导入es6-shim