相对链接和backbone.js路由器

时间:2012-07-28 16:12:23

标签: javascript jquery html backbone.js

我在backbone.js中使用路由器功能并遇到了这个问题。这可能是一件微不足道的事情,但我似乎无法弄清楚这一点,也没有在谷歌上找到任何东西。

问题:在页面http://www.mydomain.com/user/1上有一个链接。此链接应链接到http://www.mydomain.com/user/1/profile

当然,如果我使用<a href="1/profile">,我会得到我想要的内容,但1是一个动态生成的值。那我的路由器应该如何定义路由呢?我认为将数字1硬编码到路线中并不是明智的选择。

//Router

var AppRouter = Backbone.Router.extend({

    routes: {
        '': 'profile',
        'profile': 'profile'
    },

    profile: function() {

    }
});

var app = new AppRouter();
Backbone.history.start();

当我设置href标记的a属性时<a href="profile">,结果的链接为http://www.mydomain.com/user/profile

对于<a href="./profile">,我得到http://www.mydomain.com/user/profile

对于<a href="/profile">,我得到http://www.mydomain.com/profile

对于<a href="profile/">,我得到http://www.mydomain.com/profile/

为什么1缺失,我如何保持它以实现我想要的目标?

2 个答案:

答案 0 :(得分:5)

您无法直接在HTML中定义此动态网址,您必须在视图中创建它们。

例如:

<强>模板:

<script type="text/template" id="template-element">
  <h1><%= title %></h1>
  <a class="profile" href="<%= url_profile %>">profile</a>
</script>

js代码:

// code simplified and no tested
var Element = Backbone.Model.extend({
  initialize: function(){
    this.set( "url_profile", this.url() + "/profile" );
  }
});

var ElementView = Backbone.View.extend({
  template: _.template( $("#template-element").html() ),

  render: function(){
    this.$el.html( this.template( this.model.toJSON() ) );
    return this;
  }
});

或者,正如我有时感觉到的那样:

<强>模板:

<script type="text/template" id="template-element">
  <h1><%= title %></h1>
  <a class="profile" href="#replace_with_real_url">profile</a>
</script>

js代码:

// no Element.url_profile attribute needed:
var ElementView = Backbone.View.extend({
  template: _.template( $("#template-element").html() ),

  render: function(){
    this.$el.html( this.template( this.model.toJSON() ) );
    this.$el.find( ".profile" ).attr( "href", "/user/" + this.model.id + "/profile" );
    return this;
  }
});

答案 1 :(得分:-1)

您可以在http://backbonejs.org/#Router中看到,您可以在路线中使用参数,例如'/user/:id/profile'