Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am calling save() on a Backbone model. This works in every version of every browser I have tried except Safari and Safari on iOS.

In those 2 browsers the call fails before hitting the server with a 400 Bad Request error. The call looks like ../common/User/

My User model looks like this:

Backbone.Model.extend({

    idAttribute: "UserId",
    initialize: function() {
    }, 

    url: function () {
        var base = 'common/User/';
        return (this.isNew()) ? base : base + this.id;
    },...

The information I am trying to save looks like this:

{"BrowserType":"Safari","BrowserVersion":5.1,"ApplicationPath":"index"}

I not sure what other information I could provide to be helpful.

Any ideas why this could be happening?

EDIT The Request Header looks like:

Accept:application/json, text/javascript, */*; q=0.01
Content-Type:application/json
Origin:http://localhost:1087
Referer:http://localhost:1087/index.html
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2
X-Requested-With:XMLHttpRequest
share|improve this question
If you open Webinspector, what is the request URL in the header? – marcoo Jun 21 '12 at 18:11
localhost:1087/common/User locally... With a slash at the end... (i cant figure out how to escape it here) – Mike Fielden Jun 21 '12 at 18:13
@MikeFielden: Backticks are your friend (even in comments): http://localhost:1087/common/User/ – mu is too short Jun 21 '12 at 18:30
Can't reproduce error. Can you post the complete request header? What server do you use? – marcoo Jun 21 '12 at 18:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.