Django模型调用save()方法时无法保存

3

我正在尝试保存一个 Django 模型,但不知何故只得到了 500 内部服务器错误。

如果我注释 social_auth.save() 部分,程序可以正常运行并且我可以操纵对象,但无法保存它。

为什么会这样?我正在使用 Django Tastypie,并尝试保存一个 Django-social-auth 实例。

def obj_create(self, bundle, request=None, **kwargs):
    try:
        #this is not supposed to upgrade password
        bundle = super(UserResource, self).obj_create(bundle)
        bundle.obj.save()
        if bundle.data.get('extra_data') != None:
            print bundle.data.get('extra_data')
            fb_id = bundle.data.get('extra_data')['id']
            #social_auth=UserSocialAuth(user_id = bundle.obj, provider=bundle.data.get('provider'),uid=fb_id,extra_data=bundle.data.get('extra_data') )
            social_auth=UserSocialAuth()
            social_auth.user_id = bundle.obj
            social_auth.provider=bundle.data.get('provider')
            social_auth.uid=fb_id
            social_auth.extra_data=bundle.data.get('extra_data')


            print "social: ",social_auth.extra_data
            social_auth.save()

    except IntegrityError:
        raise BadRequest('Username already exists')

    return bundle

追溯:

Traceback (most recent call last):
  File "temp_3.py", line 23, in <module>
    post()
  File "temp_3.py", line 18, in post
    f = urllib2.urlopen(req)
  File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 406, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 519, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 444, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 527, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 500: INTERNAL SERVER ERROR

堆栈跟踪显示了什么? - karthikr
没什么大不了的,我只是在上面添加了回溯信息。 - psychok7
1
如果bundle.obj是类型为“User”的对象,则“social_auth.user_id = bundle.obj”是错误的,应该是“social_auth.user = bundle.obj”。 - Steve K
现在它可以工作了...你可以写一个答案,我会标记它为正确的..谢谢。 - psychok7
1个回答

2
如果bundle.obj是类型为User的话,那么social_auth.user_id = bundle.obj是错误的,应该是social_auth.user = bundle.obj。同时确保你不处于这种情况下:django-social-auth HTTP 500

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接