其他分享
首页 > 其他分享> > 千峰商城-springboot项目搭建-45-router动态路由匹配

千峰商城-springboot项目搭建-45-router动态路由匹配

作者:互联网

1.通配符(*):*可以匹配任意路径 例如: {path:"/*",component:t5}, //表示匹配所有路径 {path:"/user-*",component:t5}, //表示匹配所有以user开头的路径  
const myrouter = new VueRouter({
    routes:[
            {path:"/*",component:t5},   //表示匹配所有路径

            {path:"/user-*",component:t5},  //表示匹配所有以user开头的路径    
]});

 注意:如果使用通配符定义路径,需要注意路由声明的顺序。

 

 

2.路由参数:

/a/:id  可以匹配所有 /a/ 开头的路径
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script type="text/javascript" src="js/vue.js" ></script>
        <script type="text/javascript" src="js/vue-router.js"></script>
    </head>
    <body>
        
        <div id="container">
            <div>
                <table>
                    <tr>
                        <td><img src="img/2.jpg" /></td>
                        <td>
                            <ul>
                                <li><router-link to="/a/101">首页</router-link></li>
                            </ul>
                        </td>
                    </tr>
                </table>            
            </div>
            <div>
                <router-view></router-view>
            </div>
        </div>
        
        <script type="text/javascript">
            //vue的路由旨在为单页面应用开发提供便捷
            //1.定义链接跳转的模板(组件)
            const t1 = {template:`<p>index:{{$route.params.id}}</p>`};
            
            //2.定义路由
            const myrouter = new VueRouter({
                routes:[
                    {path:"/a/:id",component:t1},     
            ]});
            
            //3.引用路由
            var vm = new Vue({
                el:"#container",
                router:myrouter
            });
        </script>
    </body>
</html>

 

 

 

 3.优先级问题:

如果一个路径可以匹配多个路由,则按照路由的顺序排序。路由定义的越早,优先级就越高。

 

标签:路径,匹配,springboot,45,component,user,path,router,路由
来源: https://www.cnblogs.com/lysboke/p/16469549.html