其他分享
首页 > 其他分享> > exact精确匹配

exact精确匹配

作者:互联网

 <Route path="/" exact component={Index}/>
            <Route path="/list/"  component={List}/>

/:

加exact 地址栏 /***匹配不到/对应的component

不加exact /***能匹配到

/list/:

加exact 地址栏 /list/***匹配不到/对应的component

不加exact /***能匹配到

 

首页一般是精确匹配的

标签:匹配,不加,list,component,地址栏,精确,exact
来源: https://www.cnblogs.com/Jarsmine/p/16369452.html