I have been looking into Backbone.js lately and i am now trying to hook it up with my server-side asp.net mvc 3.

This is when i discovered a issue. ASP.NET listens to different Actions, Ex: POST /Users/Create and not just POST /users/. Because of that, the Model.Save() method in backbone.js will not work.

How should we tackle this problem? Do i have to rewrite the Backbone.Sync?

link|improve this question

1  
Why not just POST /users/? ASP.NET MVC Doesn't stop you. – UpTheCreek Sep 7 '11 at 18:11
Well, while it is possible to do that, the standard way is to post to the same url you're at. Som if i am creating a user, i would be on /user/create. But as you say, that would probably work if you wanted it too. – Anders Sep 8 '11 at 13:19
This is better handled in the new MVC4 Web Api. i Would recommend others to look at it asp.net/whitepapers/mvc4-release-notes#_Toc317096197 – Anders Mar 5 at 12:59
feedback

3 Answers

up vote 13 down vote accepted

The answer is not to override Backbone.sync. You rarely would want to do this. Instead, you need only take advantage of the model's url property where you can assign a function which returns the url you want. For instance,

Forum = Backbone.Model.extend({

  url: function() {
    return this.isNew() ? '/Users/Create' : '/Users/' + this.get('id');
  }

});

where the url used for a model varies based upon whether the model is new. If I read your question correctly, this is all you need to do.

link|improve this answer
This was a very good alternative to re-writing stuff server side. Thanks! – Anders Jun 8 '11 at 6:24
1  
It's still somewhat of a hack/workaround. Raynos has a more appropriate answer below. – one.beat.consumer Dec 29 '11 at 20:26
Agreed. Prefer compatible URLs, however, if you have no control then the above approach is what you are left with. When I answered this, I perceived this inflexibility. – Bill Eisenhauer Jan 1 at 20:32
feedback

You either have to tell ASP.NET MVC to route proper REST urls or fix Backbone.sync so it sends the GET/POST requests at the proper URLs.

Backbone works with REST not with RESTful URLs. There may be an OS implementation of Backbone.sync that matches your urls though.

Recommend URLs that play more nicely with Backbone:

GET     /forums              ->  index
GET     /forums/new          ->  new
POST    /forums              ->  create
GET     /forums/:forum       ->  show
GET     /forums/:forum/edit  ->  edit
PUT     /forums/:forum       ->  update
DELETE  /forums/:forum       ->  destroy
link|improve this answer
I always thought ASP.NET MVC's implementation of RESTful URL's were pretty solid? Is there anyone who have done this before? What way should i go, change Backbone.sync or MVC routing? – Anders Jun 7 '11 at 9:29
@Anders That's a choice you have to make. Depends what URLs you want. (updated answer). – Raynos Jun 7 '11 at 9:37
1  
@Anders Raynos is right... the "standard" REST is to use routes that map to objects/nouns, leaving your "actions" implicitly applied via HTTP verbs used to access them. /users/create then is not REST... it attempts to be "REST-like" or "RESTful" but it is not as POST is the only verb applicable. GET is being used to grab a form for creating a user rather than fetch a User object, PUT and DELETE make no sense. Create a REST api you can work with, and use Backbone the way it was intended. – one.beat.consumer Dec 29 '11 at 20:30
feedback

I wrote a blog post recently describing how to bind .NET MVC to the default Backbone service layer.

Like previous posters have mentioned, there are a number of approaches you could take. I prefer this approach because it requires little configuration.

The controller:

public class ZocController : Controller
{
    public ActionResult Docs()
    {
        return Json(GetDocs(), JsonRequestBehavior.AllowGet);
    }

    [ActionName("Docs")]
    [HttpPost]
    public ActionResult HandlePostDoc(Doctor doc)
    {
        doc.id = Guid.NewGuid();

        CreateDoc(doc);

        return Json(doc);
    }

    [ActionName("Docs")]
    [HttpPut]
    public ActionResult HandlePutDoc(Doctor doc)
    {
        UpdateDoc(doc);

        return new EmptyResult();
    }

    [ActionName("Docs")]
    [HttpDelete]
    public ActionResult HandleDeleteDoc(Guid id)
    {
        DeleteDoc(id);

        return new EmptyResult();
    }
}

The Backbone

window.Doctor = Backbone.Model;

window.Doctors = Backbone.Collection.extend({

    model: Doctor,

    url: '/zoc/docs'

});
link|improve this answer
This looks like a very nice way to deal with it! Anyone else have experience using this method? – Anders Dec 30 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.