由于错误导致预渲染失败:ReferenceError:PrimeNG AutoComplete 未定义事件
2017-04-16
5830
我尝试在我的 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个回答
我能够通过更改由 ASP.Net Core 模板生成的 Index.cshtml 页面中的 asp-prerender 标记来解决这个问题。我错过了问题中有关 ASP.Net Core 模板的要点。
我将标记从
<app asp-prerender-module="ClientApp/dist/main-server">Loading...</app>
更改为
<app asp-ng2-prerender-module="ClientApp/dist/main-server">Loading...</app>
user3731783
2017-04-17
只需取消预渲染。
<app>Loading...</app>
几周前我在 stackoverflow 上找到了这个答案,尝试再次搜索并将其链接到这里,但没有任何结果。如果有人找到它,请将其链接到这里。谢谢
Jason Foglia
2017-09-22
使用以下步骤
1. "Loading..." 2. In Browser.ts file or boot.client.ts file import the following **import es6-shim**
V. Periyasamy
2017-12-23