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 7690263
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T20:21:21+00:00 2026-05-31T20:21:21+00:00

Is it possible to use TastyPie to update a ForeignKey field to None ?

  • 0

Is it possible to use TastyPie to update a ForeignKey field to None?

Related question: tastypie won't remove foreignkey reference during PUT

What I have:

class SomeObject(models.Model):
    some_field = models.ForeignKey(SomeOtherObject, null=True)

(and of course the corresponding TastyPie resource class that works fine for updating other fields)

What I want:

To update some_field to None using TastyPie.

What I’ve tried (in JavaScript):

$.put('/my/api/model/someobject/42/', { some_field: null });
$.put('/my/api/model/someobject/42/', { some_field: '/my/api/model/someotherobject/null/' });
$.put('/my/api/model/someobject/42/', { some_field: '' });
$.put('/my/api/model/someobject/42/', { some_field: 0 });
$.put('/my/api/model/someobject/42/', { some_field: false });

And so on. These all result in 404 or 400. Some result in 204, but the database is not updated.

Reading through the code in full_dehydrate(), it seems it might not be possible at present do so.

I’ve looked at the recent code on github, and I’m not convinced this is possible.

  • 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-31T20:21:22+00:00Added an answer on May 31, 2026 at 8:21 pm

    Here is a generic solution. Create a base resource and extend all other resources from this one. It’s a hack, but it works.

    class MyResource(ModelResource):
        def obj_update(self, bundle, request=None, **kwargs):
            for field_name in self.fields:
                field = self.fields[field_name]
    
                if type(field) is ToOneField and field.null and bundle.data[field_name] is None:
                    setattr(bundle.obj, field_name, None)
    
            return super(MyResource, self).obj_update(bundle, **kwargs)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this possible to use Ajax.Beginform with update target inside of ajax form. like
Is it theoretically possible to use in-app purchases to update an iOS app automatically?
Recently I asked a question on SO that had mentioned the possible use of
Possible Duplicate: Use Linq to Xml with Xml namespaces I have an xml: <?xml
Is it possible use regex to remove small words in a text? For example,
I have reviewed DashCommerce, nopCommerce and DotShoppingCart for possible use and all of them
Is it possible use RESTKit with ASIHTTPRequest? I have been using ASIHTTPRequest but it
I have recently started looking into Google Charts API for possible use within the
Is it possible use mod_rewrite to resolve addresses hosted on another server? Say I
Is it possible use a MySQL query to perform this kind of check? If

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.