0

我有路由骨干网的问题。我在产品索引 (localhost:3000/products) 中调用 Backbone.history.start()。路线:

'': 'product_index'  
':id': 'product_show' (tag 'a' link 'localhost:3000/products#123')
':id/items/:item_id': 'item_show' (tag 'a' link 'localhost:3000/products#123/items/456')

注意:所有标签都有 data-ajax = 'false' 并有一些配置:

$(document).bind('mobileinit', function() {
        $.mobile.ajaxEnabled = false;
        $.mobile.linkBindingEnabled = false;
        $.mobile.hashListeningEnabled = false;
        $.mobile.pushStateEnabled = false;
      });

当我在页面 'localhost/products#123' 并单击标记 'a' 链接 'localhost:3000/products#123/items/456' 时发生错误。它警告“加载页面错误”,然后 url 自动更改为“localhost:3000/123/items/456”,并且在控制台中出现错误:“GET localhost:3000/123/items/456 404 (Not Found)”

我的路线文件:

class Braindu.Routers.Mobile extends Backbone.Router
  initialize: (options) ->
    @products = new Braindu.Collections.Products()
    @products_view = new Braindu.Views.MobileProductsIndex(collection: @products, id_product_el:'product-index-page')

  routes:
    ''    : 'product_index'
    ':id' : 'product_show'
    ':id/items/:item_id': 'item_show'


  product_index: ->
    @product_index_view.render()

  product_show:(id) ->
    $.mobile.changePage( "#product-show-page" , { reverse: false, changeHash: false } )
    current_product_model = @product_index_view.product_collection.where({_id: id})[0]
    if current_product_model != null && current_product_model != undefined
      @product_index_view.render_current_product(current_product_model)

  item_show:(id, item_id)->
    console.log 'item showwwwwwwwwwwwwwwwwwwwwwww'
    $.mobile.changePage( "#object-card-page" , { reverse: false, changeHash: false } )
4

1 回答 1

0

当您调用 localhost:3000/123/items/456 时,您是在调用以下函数吗?

 product_show:(id) ->
    $.mobile.changePage( "#product-show-page" , { reverse: false, changeHash: false } )
    current_product_model = @product_index_view.product_collection.where({_id: id})[0]
    if current_product_model != null && current_product_model != undefined
      @product_index_view.render_current_product(current_product_model)

如果是这样,请为我调试并找出 id 的值。

谢谢

于 2013-06-19T12:22:50.210 回答