我尝试构建一个离子2应用程序。 当我在浏览器中使用离子服务器尝试应用程序或在模拟器上启动它时,一切正常。
但是当我每次尝试构建错误
时ionic-app-script tast: "build"
Error Type AddEvent in "PATH"/add.event.ts is part of the declarations of 2 modules: AppModule in "PATH"/app.modules.ts and AddEvent in "PATH"/add-event.module.ts.
Please consider moving AddEvent in "PATH"/add-event.ts to a higher module that imports AppModule in "PATH"/app.module.ts and AddEventModule.
You can also creat a new NgModule that exports and includes AddEvent then import that NgModule in AppModule and AddEventModule
我的AppModule是
import { NgModule, ErrorHandler } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { AngularFireModule } from 'angularfire2';
import { MyApp } from './app.component';
import { Eventdata } from '../providers/eventdata';
import { AuthProvider } from '../providers/auth-provider';
import { HttpModule } from '@angular/http';
import { HomePage } from '../pages/home/home';
import { Login } from '../pages/login/login';
import { Register } from '../pages/register/register';
import { AddEvent } from '../pages/add-event/add-event';
import { EventDetails } from '../pages/event-details/event-details';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
@NgModule({
declarations: [
MyApp,
HomePage,
Login,
Register,
AddEvent,
EventDetails
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
HttpModule,
AngularFireModule.initializeApp(config)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage,
Login,
Register,
AddEvent,
EventDetails
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}, Eventdata, AuthProvider
]
})
export class AppModule {}
和我的add-event.module.ts是
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { AddEvent } from './add-event';
@NgModule({
declarations: [
AddEvent,
],
imports: [
IonicPageModule.forChild(AddEvent),
],
exports: [
AddEvent
]
})
export class AddEventModule {}
我知道我必须删除其中一个声明,但我不知道如何。
如果我从AppModule中删除声明,我会收到一条错误,指出找不到登录页面,同时运行ionic serve
答案 0 :(得分:150)
从AppModule中删除声明,但更新AppModule配置以导入AddEventModule。
.....
import { AddEventModule } from './add-event.module'; // <-- don't forget to import the AddEventModule class
@NgModule({
declarations: [
MyApp,
HomePage,
Login,
Register,
//AddEvent, <--- remove this
EventDetails
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
HttpModule,
AngularFireModule.initializeApp(config),
AddEventModule, // <--- add this import here
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage,
Login,
Register,
AddEvent,
EventDetails
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}, Eventdata, AuthProvider
]
})
export class AppModule {}
此外,
请注意,如果要在该模块外部使用AddEventModule,则导出AddEvent组件非常重要。幸运的是,您已经配置了,但如果省略了,如果您尝试在AppModule的另一个组件中使用AddEvent组件,则会出现错误
答案 1 :(得分:24)
有些使用Lazy loading
的人会偶然发现此页面。
以下是我为修复共享指令而采取的措施。
shared.module.ts
import { NgModule, Directive,OnInit, EventEmitter, Output, OnDestroy, Input,ElementRef,Renderer } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SortDirective } from './sort-directive';
@NgModule({
imports: [
],
declarations: [
SortDirective
],
exports: [
SortDirective
]
})
export class SharedModule { }
然后在app.module和您的其他模块中
import {SharedModule} from '../directives/shared.module'
...
@NgModule({
imports: [
SharedModule
....
....
]
})
export class WhateverModule { }
答案 2 :(得分:14)
解决方案非常简单。查找*.module.ts
个文件和注释声明。在您的情况下,找到addevent.module.ts
文件并删除/注释下面的一行:
@NgModule({
declarations: [
// AddEvent, <-- Comment or Remove This Line
],
imports: [
IonicPageModule.forChild(AddEvent),
],
})
此解决方案适用于离子3,适用于由ionic-cli生成的页面,适用于ionic serve
和ionic cordova build android --prod --release
命令!
快乐......
答案 3 :(得分:5)
IN Angular 4.此错误被视为ng服务运行时缓存问题。
大小写:1一旦您在一个模块中导入组件并再次导入子模块,就会发生此错误。
案例:2将一个组件导入错误的位置并在正确的模块中删除并更换,那时它将被视为ng服务缓存问题。需要停止项目并再次启动-do服务,它将按预期工作。
答案 4 :(得分:5)
如果您的网页是使用CLI创建的,那么它会创建一个 filename.module.ts 的文件,那么您必须在导入数组中注册 filename.module.ts 在app.module.ts文件中,不要在声明数组中插入该页面。
例如
import { LoginPageModule } from '../login/login.module';
declarations: [
MyApp,
LoginPageModule,// remove this and add it below array i.e. imports
],
imports: [
BrowserModule,
HttpModule,
IonicModule.forRoot(MyApp, {
scrollPadding: false,
scrollAssist: true,
autoFocusAssist: false,
tabsHideOnSubPages:false
}),
LoginPageModule,
],
答案 5 :(得分:1)
运行ionic命令时会自动添加此模块。然而,这不是必要的。因此,另一种解决方案是从项目中删除 add-event.module.ts 。
答案 6 :(得分:1)
就我而言,当我使用以下代码调用页面时会发生此错误
this.navCtrl.push("Login"); // Bug
我刚刚删除了以下的引号,并且还在我用过的文件顶部导入了该页面,称为“登录页面”
this.navCtrl.push(登录); //正确
我现在无法解释这个差异,因为我是初学者级别的开发人员
答案 7 :(得分:1)
由于Ionic 3.6.0发布,因此使用Ionic-CLI生成的每个页面现在都是一个Angular模块。
这意味着您必须在文件src/app/app.module.ts
import { BrowserModule } from "@angular/platform-browser";
import { ErrorHandler, NgModule } from "@angular/core";
import { IonicApp, IonicErrorHandler, IonicModule } from "ionic-angular";
import { SplashScreen } from "@ionic-native/splash-screen";
import { StatusBar } from "@ionic-native/status-bar";;
import { MyApp } from "./app.component";
import { HomePage } from "../pages/home/home"; // import the page
import {HomePageModule} from "../pages/home/home.module"; // import the module
@NgModule({
declarations: [
MyApp,
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
HomePageModule // declare the module
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
HomePage, // declare the page
],
providers: [
StatusBar,
SplashScreen,
{ provide: ErrorHandler, useClass: IonicErrorHandler },
]
})
export class AppModule {}
答案 8 :(得分:1)
要超越此错误,您应首先删除app.module.ts的所有导入,并使用以下内容:
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { ErrorHandler, NgModule } from '@angular/core';
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { MyApp } from './app.component';
@NgModule({
declarations: [
MyApp
],
imports: [
BrowserModule,
HttpClientModule,
IonicModule.forRoot(MyApp)
],
bootstrap: [IonicApp],
entryComponents: [
MyApp
],
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}
]
})
export class AppModule {}
接下来编辑您的页面模块,如下所示:
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { HomePage } from './home';
@NgModule({
declarations: [
HomePage,
],
imports: [
IonicPageModule.forChild(HomePage),
],
entryComponents: [HomePage]
})
export class HomePageModule {}
然后在所有页面的组件注释之前添加IonicPage的注释:
import { IonicPage } from 'ionic-angular';
@IonicPage()
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
然后将您的rootPage类型编辑为字符串并删除页面导入(如果您的应用程序组件中有任何内容)
rootPage: string = 'HomePage';
然后导航功能应该是这样的:
/**
* Allow navigation to the HomePage for creating a new entry
*
* @public
* @method viewHome
* @return {None}
*/
viewHome() : void
{
this.navCtrl.push('HomePage');
}
您可以在此处找到此解决方案的来源:Component is part of the declaration of 2 modules
答案 9 :(得分:0)
简单修复,
转到app.module.ts
文件和remove/comment
与add_event
绑定的所有内容。不需要向App.module.t
添加由ionic cli
生成的组件,因为它为名为components.module.ts
的组件创建了单独的模块。
它具有所需的模块组件导入
答案 10 :(得分:0)
已解决-组件是2个模块声明的一部分
并运行命令 ionic cordova build android --prod --release 在我的应用中正常工作
答案 11 :(得分:0)
有同样的问题。只需删除“声明”中除AppModule之外的所有模块。
为我工作。
答案 12 :(得分:0)
该错误表明,如果您的页面/组件已经具有离子模块文件,则从根目录中删除模块AddEvent;如果不只是从其他/子页面/组件中将其删除,则末页/组件中应该仅存在如果要使用,则导入一个模块文件。
具体来说,如果需要在多个页面中添加根模块,并且在特定页面中仅将其保留在一个页面中,则应该添加根模块。
答案 13 :(得分:0)
我意外地创建了我自己的组件,并使用相同的名称作为库的组件。
当我使用IDE自动导入该组件的库时,我选择了错误的库。
因此,此错误是在抱怨,我正在重新声明该组件。
我通过导入自己组件的代码而不是库进行修复。
我也可以通过不同的命名来解决:避免歧义。
答案 14 :(得分:0)
在这种情况下,请在其中创建另一个共享模块,以导入在多个模块中使用的所有组件。
在共享组件中。声明那些组件。然后将共享模块导入到appmodule以及要访问的其他模块中。它将100%正常工作,我做到了,而且已经正常工作。
@NgModule({
declarations: [HeaderComponent, NavigatorComponent],
imports: [
CommonModule, BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
FormsModule,
]
})
export class SharedmoduleModule { }
const routes: Routes = [
{
path: 'Parent-child-relationship',
children: [
{ path: '', component: HeaderComponent },
{ path: '', component: ParrentChildComponent }
]
}];
@NgModule({
declarations: [ParrentChildComponent, HeaderComponent],
imports: [ RouterModule.forRoot(routes), CommonModule, SharedmoduleModule ],
exports: [RouterModule]
})
export class TutorialModule {
}
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
FormsModule,
MatInputModule,
MatButtonModule,
MatSelectModule,
MatIconModule,
SharedmoduleModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
答案 15 :(得分:-3)
我遇到了同样的错误,但我发现在导入AddEventModule
时,您无法导入AddEvent
模块,因为在这种情况下会出现错误。