我正在尝试使用离子框架将我已经构建的angular2网页应用程序转换为移动应用程序。我的目标是通过很少的代码修改来实现。
目前我在构建应用程序时遇到了一些错误,并且所有错误都与路由器或路由有关。
Cannot find name 'ActivatedRoute'.
Cannot find name 'Router'.
Cannot find name 'Params'.
Cannot find name 'Routes'.
我在角度工作正常的代码是这样的
constructor(
private ticketService: TicketService,
private route: ActivatedRoute,
private location: Location
) { }
它找不到像Routes,ActivatedRoute等模块。
以下是我的版本信息:
离子逆转 3.1.2
npm --version 4.1.1
ng --version
@angular/cli: 1.0.0
node: 6.9.1
os: win32 x64
@angular/common: 4.1.0
@angular/compiler: 4.1.0
@angular/compiler-cli: 4.1.0
@angular/core: 4.1.0
@angular/forms: 4.1.0
@angular/http: 4.1.0
@angular/platform-browser: 4.1.0
@angular/platform-browser-dynamic: 4.1.0
路由器不能用于离子?
请帮忙。 感谢