Магистральные маршруты без хешей? - программирование
Подтвердить что ты не робот

Магистральные маршруты без хешей?

Я использую основу для текущего проекта. Мне было интересно, можно ли выполнять маршрутизацию без хэшей #, как это делает davis.js.

Спасибо!

4b9b3361

Ответ 1

Вам нужно включить pushState

Backbone.history.start({pushState: true})

http://backbonejs.org/#Router

http://backbonejs.org/#History

Изменить: как отмечено в комментариях, это будет работать только для браузеров, поддерживающих pushState, браузеры, которые не возвращаются к хеш-методу. Нет никакого реального способа обойти это, вы можете включить для современного браузера и отступить или просто использовать хэши для всех браузеров.

Ответ 2

Базовый котел имеет превосходный помощник, который позволяет pushstate. Я использую его, когда есть моменты, когда я хочу обойти мой маршрутизатор.

// Trigger the initial route and enable HTML5 History API support, set the
// root folder to '/' by default.  Change in app.js.
Backbone.history.start({ pushState: true, root: app.root });

// All navigation that is relative should be passed through the navigate
// method, to be processed by the router. If the link has a `data-bypass`
// attribute, bypass the delegation completely.
$(document).on("click", "a[href]:not([data-bypass])", function(evt) {
  // Get the absolute anchor href.
  var href = { prop: $(this).prop("href"), attr: $(this).attr("href") };
  // Get the absolute root.
  var root = location.protocol + "//" + location.host + app.root;

  // Ensure the root is part of the anchor href, meaning it relative.
  if (href.prop.slice(0, root.length) === root) {
    // Stop the default event to ensure the link will not cause a page
    // refresh.
    evt.preventDefault();

    // `Backbone.history.navigate` is sufficient for all Routers and will
    // trigger the correct events. The Router internal `navigate` method
    // calls this anyways.  The fragment is sliced from the root.
    Backbone.history.navigate(href.attr, true);
  }
});