在 Meteor 和 Iron Router 中支持具有嵌套属性的多个参数

Supporting multiple parameters with nested properties in Meteor and Iron Router

使用 Meteor 和 Iron Router,我创建了使用多个参数的动态页面路径。但是,如果我尝试访问路径中的 nested/child 属性,路径就会中断。这些帖子很有帮助,但没有解决子属性问题:
Iron-router nested routes with multiple parameters
meteor iron-router nested routes

铁路由器

this.route('location',{
  path: '/properties/:foo/:_id',
  waitOn: function(){
    return Meteor.subscribe('properties', this.params._id);
  },
  action: function(){
    this.render('propertyPage', {
      data: function(){
        return Properties.findOne(this.params._id);
      }
    });
  }
});


标记(有效)

<a href="{{pathFor 'location' foo=bar }}">Click Me</a>


尝试在标记中引用嵌套属性时,它会中断:

标记(无效)

<a href="{{pathFor 'location' foo=bar.nestedChild }}">Click Me</a>


我也在 javascript 中尝试过,但没有成功:

path: '/properties/:foo.nestedChild/:_id',


有没有办法在不破坏 Iron Router 的情况下引用嵌套属性?

- - - 编辑 - - -

更实际的例子:

// data context from route action (Properties.findOne(this.params._id))
property = {
  _id: "3cu7B8b6K3EzCgYnQ"
  address: {
    city: 'Houston',
    state: 'TX',
    zip: 77006,
    lat: null,
    lng: null
  },
  images: ['img1.png', 'img2.png', 'img3.png'],
  schools: [
    { grade:'elementary', name:'Haude', rating:4 },
    { grade:'middle', name:'Strauke', rating:5 },
    { grade:'high', name:'Klein', rating:3 },
  ]
}

我正在尝试构建这样的 url 架构:

path: '/properties/:address.city/:address.state/:address.zip/:_id'

或者在示例中:

"/properties/Houston/TX/77006/3cu7B8b6K3EzCgYnQ"

在你的路由中,如果你想使用它,你需要从params对象中获取:foo:

var foo = this.params.foo;

为时已晚,但总有人会受益。我通过以下方式解决了它:

定义嵌套路径(顺便说一句,以这种方式定义路径对 SEO 更好)

 <a href="/user/{{owner.id}}/playlist/{{id}}"> Content </a>

路由器

this.route('playlistItem', {
  path: '/user/:owner/playlist/:playlist',
  onBeforeAction: function() {
    // You can get your params 
    var ownerId = this.params.owner
    var playlistId = this.params.playlist
    // execute some code
  },
});