如何通过 Backbones.js 使用多个路由器

发布于 2024-12-13 22:15:51 字数 145 浏览 1 评论 0原文

我想将 Backbones.js 与我的 Rails 3.1(带资产)应用程序一起使用,并且我想独立于集合创建一个模型,模型中没有任何 url 选项,并且我无法将其与我的服务器同步。
< br> 有没有什么正确的方法可以做呢?我找不到任何使用多条路线的教程。

I want to use Backbones.js with my rails 3.1 (with assets) application and I would like to create a model independently to the collection without any url option in my model and I can't synchronize it with my server.

Is there any proper way to do? I can't find any tutorial using multiple routes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-12-20 22:15:51

来自 github 页面:
https://github.com/codebrew/backbone-rails

window.router = new Blog.Routers.PostsRouter({posts: <%= @posts.to_json.html_safe -%>});

那么如果您需要访问作者,你可以这样做:

window.AuthorRouter = new Blog.Routers.AuthorsRouter({authors: <%= @authors.to_json.html_safe -%>});

拥有多个路由器不应发生冲突。

您可以从 PostsRou​​ter 访问您的作者模型:

AuthorRouter.AuthorView.model

From the github page:
https://github.com/codebrew/backbone-rails

window.router = new Blog.Routers.PostsRouter({posts: <%= @posts.to_json.html_safe -%>});

so then if your needed access to Authors, you could do something like this:

window.AuthorRouter = new Blog.Routers.AuthorsRouter({authors: <%= @authors.to_json.html_safe -%>});

Having multiple routers shouldn't conflict.

Than you could access your Author Models from your PostsRouter:

AuthorRouter.AuthorView.model
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文