使用 router.route 时不会触发页面加载时的初始骨干路由

发布于 2024-12-14 15:14:54 字数 678 浏览 1 评论 0原文

这有效。

Admin.Routers.AppRouter = Backbone.Router.extend({
  // home() gets trigger when I visit http://example.com/admin
  routes: {
    "admin": "home"
  },

  initialize: function() {},

  home: function() {
    log("Home");
  }
});

这不起作用。

Admin.Routers.AppRouter = Backbone.Router.extend({
  initialize: function() {    
    var that = this;

    // home() DOES NOT get trigger when I visit http://example.com/admin
    this.route(/^\/admin$/, "home", function() {
      that.home();
    });
  },

  home: function() {
    log("Home");
  }
});

这是 router.route 的正确功能吗?

This works.

Admin.Routers.AppRouter = Backbone.Router.extend({
  // home() gets trigger when I visit http://example.com/admin
  routes: {
    "admin": "home"
  },

  initialize: function() {},

  home: function() {
    log("Home");
  }
});

This does not work.

Admin.Routers.AppRouter = Backbone.Router.extend({
  initialize: function() {    
    var that = this;

    // home() DOES NOT get trigger when I visit http://example.com/admin
    this.route(/^\/admin$/, "home", function() {
      that.home();
    });
  },

  home: function() {
    log("Home");
  }
});

Is this the correct functionality of router.route?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

她如夕阳 2024-12-21 15:14:55

我假设您根据您发布的示例网址使用 {pushState: true} 。你可以尝试以下方法吗?

this.route("admin", "home", function() {
      that.home();
    });

I'm assuming you're using {pushState: true} based on the example urls you have posted. Can you try the following?

this.route("admin", "home", function() {
      that.home();
    });
吃素的狼 2024-12-21 15:14:55
Backbone.history.start({ silent: false });
Backbone.history.start({ silent: false });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文