Meteor.Router.add({
'/': 'home',
'/login': 'login',
'/signup': 'signup'
}
});
Meteor.startup(function () {
Backbone.history.start({pushState: true});
});
运行 TypeError: Cannot call method 'start' of undefined
'/': 'home',
'/login': 'login',
'/signup': 'signup'
}
});
Meteor.startup(function () {
Backbone.history.start({pushState: true});
});
运行 TypeError: Cannot call method 'start' of undefined