Backbone.js导航到索引url

时间:2012-12-30 08:07:02

标签: backbone.js

我在http://example.com/posts列出了帖子。 每个帖子都有编辑链接,比如

http://example.com/posts#/1/edit

当我点击链接时,我正在渲染编辑帖子模板并保存它。现在的问题是 更新帖子后,我想重定向回http://example.com/posts

当我做Backbone.history.navigate('/ posts',true)时,我在网址中找到http://example.com/posts#posts

可能是我错过了什么。

1 个答案:

答案 0 :(得分:1)

尝试使用Backbone的路由器来执行导航。

您必须在应用程序中设置它的实例(每个BB应用程序都有一个)。这是执行导航的框架代码:

AppRouter = Backbone.Router.extend({ ... }) //should already be set on your app
app = new AppRouter();
app.navigate('/posts', {trigger: true});