简体   繁体   English

django - int参数必须是字符串或数字,而不是'元组'

[英]django - int argument must be a string or a number, not 'Tuple'

I've been looking at this for a couple hours and I can't seem to get a handle on why I'm getting this message... 我一直在看这几个小时,我似乎无法理解为什么我收到这条消息......

int() argument must be a string or a number, not 'tuple'

on this line from my views.py (NOTE: Exception actually occurrs one level deeper inside django core, but this my line of code which eventually triggers the exception)... 从我的views.py这一行(注意:异常实际上发生在django核心内部更深层次,但这是我的代码行,最终触发了异常)...

service_interest = ServiceInterest.objects.get_or_create(service = service, client = client)

Why am I getting this error? 为什么我收到此错误? For your benefit, see below models.py, a forms.py, and a snippet from views.py. 为了您的利益,请参阅以下models.py,forms.py和views.py中的代码段。

models.py: models.py:

class Client(models.Model):
  name = models.CharField(max_length=100)
  email = models.EmailField()
  site = models.URLField()
  contact_date = models.DateField(default = datetime.date.today())

class Service(models.Model):
  name = models.CharField(max_length=200)

class ServiceInterest(models.Model):
  service = models.ForeignKey('Service')
  client = models.ForeignKey('Client')

  class Meta:
    unique_together = ("service", "client")

forms.py... forms.py ...

class ContactForm(forms.Form):


SERVICE_CHOICES = (
    ('first_choice', 'Description of first choice'),
    ('second_choice', 'Description of second choice'),
    ('third_choice', 'Description of third choice'),
    ('other', 'Other')
  )

  SERVICE_CHOICES_DICT = dict(SERVICE_CHOICES)

  name = forms.CharField(label='What would you like us to call you?', max_length=200, required=False)
  email = forms.EmailField(label='What is your email address?', help_text='Ex: yourname@gmail.com')
  url = forms.URLField(label='If you have a website, please provide a link', required=False, help_text="Ex: www.yoursite.com")
  service_interest = forms.MultipleChoiceField(label="Please check all of the services you're interested in:", widget=forms.widgets.CheckboxSelectMultiple, choices=SERVICE_CHOICES, required=True)
  other = forms.CharField(label='If you selected \"Other\", please specify:', max_length=200, required=False)
  message = forms.CharField(max_length=10000, required=False, label='Any other information you think we should know?', widget=forms.widgets.Textarea)

  def clean_other(self):
    cleaned_data = super(ContactForm, self).clean()
    if 'service_interest' in cleaned_data.keys():
      options = cleaned_data['service_interest']
      if 'other' in options:
        other_input = cleaned_data['other']
        if other_input == None or len(other_input) == 0:
          raise forms.ValidationError('Required when \"Other\" is checked')

    return cleaned_data

relevent code from views.py: 来自views.py的相关代码:

  name = form.cleaned_data['name']
  email = form.cleaned_data['email']
  url = form.cleaned_data['url']
  interests = form.cleaned_data['service_interest']
  other = form.cleaned_data['other']
  message = form.cleaned_data['message']

  client = Client.objects.get_or_create(name = name, email = email, site = url)
  for interest in interests:
    service = None
    if(interest != 'other'):
      service = Service.objects.get_or_create(name = ContactForm.SERVICE_CHOICES_DICT[interest])
    else:
      service = Service.objects.get_or_create(name = other)

    # Appears to be responsible for the stack trace, even though exception
    # is one level deeper in...
    # /Library/Python/2.7/site-packages/django/core/handlers/base.py in get_response
    service_interest = ServiceInterest.objects.get_or_create(service = service, client = client)

get_or_create returns a tuple, in the form of (instance, created) . get_or_create(instance, created)的形式返回元组。 The second parameter tells you whether it had to create it or not, obviously enough. 第二个参数告诉你是否必须创建它,显然已经足够了。 Do the following instead: 请执行以下操作:

client, created = Client.objects.get_or_create(name = name, email = email, site = url)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 TypeError:int()参数必须是字符串或数字,而不是'tuple' - TypeError: int() argument must be a string or a number, not 'tuple' Django保存到数据库:TypeError:int()参数必须是字符串,类似字节的对象或数字,而不是“元组” - Django save to DB: TypeError: int() argument must be a string, a bytes-like object or a number, not 'tuple' Django int()参数必须是字符串或数字 - Django int() argument must be a string or a number int()参数必须是字符串或数字,而不是django中的'SimpleLazyObject' - int() argument must be a string or a number, not 'SimpleLazyObject' in django Django:int()参数必须是字符串或数字,而不是'Plain' - Django : int() argument must be a string or a number, not 'Plain' int()参数必须是字符串,类似字节的对象或数字,而不是“元组” - int() argument must be a string, a bytes-like object or a number, not 'tuple' TypeError:int()参数必须是字符串或数字,而不是使用ouchdb-python的“元组” - TypeError: int() argument must be a string or a number, not 'tuple' with couchdb-python 随机矩阵:int()参数必须是字符串或数字,而不是'元组' - Random matrix: int() argument must be a string or a number, not 'tuple' int() 参数必须是字符串或数字 - int() argument must be a string or a number Django-TypeError:int()参数必须是字符串或数字,而不是'dict' - Django - TypeError: int() argument must be a string or a number, not 'dict'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM