Simple page app routes to same view or controller SailsJS

后端 未结 3 516
不知归路
不知归路 2021-01-13 07:55

How can I route multiple urls to the same controller or view to work with angular single page app?!

I can do this but i think is ugly..

\'/\': {
            


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-13 08:45

    You can also route them simultaneously using | operator

    '/' | '/login' | '/register' | '/troller': {
                             view: 'homepage'
    }
    

提交回复
热议问题