確保如果你正在創建一個您添加到您的子模塊的import語句的NativeScript/Angular2
應用程序中的一個子模塊:
import {NativeScriptModule} from "nativescript-angular/nativescript.module";
在我的情況下,home.component.ts
和home.component.html
一個叫home.module.ts
子模塊的一部分。
import {NgModule, NO_ERRORS_SCHEMA} from '@angular/core';
import {HomeComponent} from "./home.component";
import {HomeRoutingModule} from "./home-routing.module";
import {NativeScriptModule} from "nativescript-angular/nativescript.module";
@NgModule({
imports: [
HomeRoutingModule,
NativeScriptModule //<-- this is needed
],
declarations: [
HomeComponent
],
schemas: [
NO_ERRORS_SCHEMA
]
})
export class HomeModule {
}
github nativescript issue #450