此类路径不起作用:
{ path: 'account/finalize?user=:user&token=:token', component: MyComponent }
访问http://localhost:4200/account/finalize?user=devanshu&token=122323
时,我找不到路由错误但这有效:
{ path: 'account/finalize/:school/:token', component: MyComponent }
所以,我可以访问http://localhost:4200/account/finalize/devanshu/122323
这是什么问题?为什么第一种情况出现错误?
答案 0 :(得分:0)
你可以使用
&
并在导航时将用户和令牌作为查询参数发送
path: 'account/finalize'
答案 1 :(得分:0)
我认为您不需要传递这些参数:
private class BrowserPresentation extends Presentation {
BrowserPresentation(Context ctxt, Display display) { super(ctxt, display); }
WebView webView2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
webView2=new WebView(webView.getContext()); //get webView class of mainactivity
webView2.setWebViewClient(new WebViewClient());
webView2.setInitialScale(100);
setContentView(webView2);
}
}
您可以在user=:user&token=:token
如果有任何特定组件,那么你必须将条件放在函数中。