0

I want to route to all child paths to m.

.state('index.m', {
        url: "m",
        views: {
            "viewContainer": {
                templateUrl: "p/m.html"
            }
        }
    })

Thus /m and /m/123 and /m/123/a all map to the same route index.m

4

1 回答 1

0

您需要使用URLMatcher格式:

.state('index.m', {
        url: "m{path:.*}",
        views: {
            "viewContainer": {
                templateUrl: "p/m.html"
            }
        }
    })

这应该匹配以 m 开头的任何内容。

于 2014-06-10T15:38:10.910 回答