Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7070981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:37:56+00:00 2026-05-28T05:37:56+00:00

I have some test code that i’m just trying to use to figure out

  • 0

I have some test code that i’m just trying to use to figure out backbone.js. when i call destroy on a model object backbone makes a DELETE request to my rest service. but, i can’t see any ID indicating which record is being deleted in the request data, the querystring, body or anywhere.

my model has an id property and i’ve assigned it a value of 1. is there anything else that i have to do to make sure the id gets passed through the server? or is there some other way that i’m supposed to detect what record is being deleted?

Edit – Here’s the relevant code:

var AccountModel = Backbone.Model.extend({
    url: 'Account/Update',
    id: null,
    username: ''
});

var accountM = new AccountModel({id: 1, username: 'test'});

accountM.destroy();

When I look at the debugger I see the AJAX request is made, it just looks like this:

Request URL:http://localhost/probli/Account/Update
Request Method:DELETE
Status Code:200 OK

There doens’t seem to be an ID or anything and there’s no post data. Am I doing anything wrong? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:37:56+00:00Added an answer on May 28, 2026 at 5:37 am

    You should set the urlRoot attribute of your model then let Backbone handle constructing the DELETE url:

    var AccountModel = Backbone.Model.extend({
        urlRoot: 'Account/Update',
        id: null,
        username: ''
    });
    

    This will cause the following request when accountM.destroy() is called:

    Request URL:http://localhost/probli/Account/Update/1
    Request Method:DELETE
    Status Code:200 OK
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use Qunit to test some code, but I have some
I have some code that attempts to test whether my application is running with
This is a minimal test case of some code that I actually have. It
I have some common set up code that I've factored out to a method
I have some very test-unfriendly code (to say the least) that I need to
I have some code that I use with Entity Framework like class Person{ pubic
I have some old Haskell code that includes QuickCheck test cases. Newer versions of
I have set up some test code that loads in a youtube video and
I have some test code (as a part of a webapp) that uses urllib2
I am currently trying to build some test code that uses Google C++ Test

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.