如何生成单独的 RESTful url 以在 Backbone js 模型中进行编辑和更新?

发布于 2024-10-23 19:16:06 字数 521 浏览 2 评论 0原文

我正在关注 Jame Yu 的 Backbone 教程 在这里创建我自己的应用程序。下面是我的模型。我想知道是否有一种方法可以生成单独的 url 进行编辑和更新(RESTful),而不是像教程中那样生成单独的 url。我在后端使用 Rails。谢谢。

var BusinessCard = Backbone.Model.extend({

  url : function() {

    var base = 'business_cards';

    if (this.isNew()) return 'backbone/' + base;

    return 'backbone/' + base + (base.charAt(base.length = 1) == '/' ? '' : '/') 
    + this.id;

  }
})

I'm following Jame Yu's Backbone tutorial here to create my own app. Below is my model. I wonder if there's a way to generate separate urls for edit and update (RESTful) instead of just 1 as in the tutorial. I use Rails on the back end. Thanks.

var BusinessCard = Backbone.Model.extend({

  url : function() {

    var base = 'business_cards';

    if (this.isNew()) return 'backbone/' + base;

    return 'backbone/' + base + (base.charAt(base.length = 1) == '/' ? '' : '/') 
    + this.id;

  }
})

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

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

发布评论

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

评论(2

塔塔猫 2024-10-30 19:16:06

您忽略了 REST 的要点...事实上,有一个 URI 响应统一接口中的不同动词(GET、POST、PUT、DELETE),这使得它变得轻松。所以 Backbone 实际上是 RESTful,而你却不是。

You are missing the point of REST...the fact that there is one URI which responds to different verbs from the uniform interface (GET, POST, PUT, DELETE), makes it restful. So Backbone is actually being RESTful, while you're not.

下雨或天晴 2024-10-30 19:16:06

默认主干同步方法通过在执行更新时将模型 id 附加到 url 来完全按照您希望的方式工作。

如果您需要自定义数据发送到服务器的方式,我发现最好的办法是创建您自己的主干同步。以下是我如何将创建和更新请求包装在根 json 对象中的示例: https://github.com/codebrew/rails3-backbone-coffeescript/blob/master/app/coffeescripts/lib/mongo_model.coffee

The default backbone sync method works exactly how you want it to already by appending the models id to the url when performing an update.

If you need to customize how data is sent to your server I've found the best thing is to create your own backbone sync. Here is an example of how I do it to wrap my create and update requests in a root json object: https://github.com/codebrew/rails3-backbone-coffeescript/blob/master/app/coffeescripts/lib/mongo_model.coffee

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