我在使用nativescript的应用程序上工作,该应用程序试图重定向到带有功能参数的url。以下是我的html代码
<StackLayout col="1" orientation="horizontal" horizontalAlignment="center" (tap) ="getPagebyId(pageItem.PageCode)" >
下面是我的componenet.ts代码,在其中我创建了一个函数来获取pageByid的值:
getPagebyId(PageCode): void {
uiHelper.showLoader();
setTimeout(() => {
this.router.navigate(["/createPage", PageCode]);
}, 3000);
}
这是我的module.ts代码
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core";
import { NativeScriptCommonModule } from "nativescript-angular/common";
import { PagesRoutingModule } from "./Pages-routing.module";
import { PagesComponent } from "./Pages.component";
import { NativeScriptFormsModule } from "nativescript-angular/forms";
@NgModule({
imports: [
NativeScriptCommonModule,
PagesRoutingModule,
NativeScriptFormsModule
],
declarations: [
PagesComponent
],
schemas: [
NO_ERRORS_SCHEMA
]
})
export class PagesModule { }
但是当我点击按钮时,它向我显示此错误:无法匹配任何路线。网址细分错误
有帮助吗?