我使用此路线控制器以导航到第A页。在第A页,可以导航到第B页。
RarArchive file = RarArchive.Open("rar file path");//@"C:\test.rar"
foreach (RarArchiveEntry rarFile in file.Entries)
{
string path = "extracted file path";//@"C:\"
rarFile.WriteToDirectory(path);
}
在第B页中,我使用此命令导航回第A页:
...
我现在的问题是,如果有可能以编程方式导航到页面A,我也可以设置参数/:userId /:month /:year?
答案 0 :(得分:1)
是。你可以这样做:
$ state.go('auth.recordreport',{userId:'someuser',month:4,year:2016});