我有路线。
routes: {
"example/=q:query": "example_main"
}
此:
localhost/site/#example/q=hello
完美无缺,但如果网址为:
localhost/site/#example/q=
我的路由器不理解它,也没有执行任何操作。有谁知道如何解决这个问题?
答案 0 :(得分:2)
routes: {
"example/q=*query": "example_main"
}