使用 backbone.js 更改 URL

Changing URL using backbone.js

我用

查看我的 backbone 模块

http://localhost/src/index.html#test_module

URL。 但我需要查看另一个模块,例如

http://localhost/src/index.html#test_module/another_module

注意:

我的 backbone 视图正在使用 Backbone.history.navigate(another_module, {trigger:true}); 但它给了我 URL 喜欢

http://localhost/src/index.html#another_module

你为什么不这样试试。

Backbone.history.navigate("test_module/another_module", { trigger: true });

阅读 documentation on navigate 了解更多。

在使用 backbone 进行开发时,您应该将 Backbone Routers 作为最佳实践。您可以通读文档以更好地理解。