getRoutes method

List<Route> getRoutes(
  1. String routePath
)

根据路由地址获取同一页面所有路由对象

Implementation

List<Route> getRoutes(String routePath) {
  List<Route> lst = [];
  _routeMap.forEach((key, value) {
    var signList = key.split("#hash#");
    if (signList[0] == routePath) {
      lst.add(value);
    }
  });
  return lst;
}