延迟加载的离子页面中的指令抛出错误

时间:2018-10-05 14:31:56

标签: angular ionic-framework

我有一个SwingDirective和一个CardsPage。该页面是用CardsModule延迟加载的。 SwingDirectiveAppModule的一部分,没有延迟加载。这是

export class SwingDirective {
  @Input() positionChange;
}

这是在cards.html中启动swing指令的方式

<div  swing [positionChange]="positionChange" >

这里是app.module

@NgModule({
  declarations: [
    MyApp,SwingDirective
  ]
})
export class AppModule {}

但是当我运行应用程序时出现错误

  

无法绑定到“ positionChange”,因为它不是的已知属性   'div'。 (“

好像swing未被识别。我在做什么错了?

0 个答案:

没有答案