ビューでget_or_createを使用する方法はありますか?
これは私のmodels.pyです
class Link(models.Model):
url = models.URLField(max_length=512, unique=True)
short_url = models.URLField(max_length=16, blank=True, null=True)
私のviews.pyはこんな感じです。
if oplinkform:
oplink = Link.objects.get_or_create(url = oplinkform.data['url'])
oplink.save()
私はそれでリンクオブジェクトを取得する必要があります..正しいですか?それは私にタプルを提供しています...なぜですか?
これは私がdjangoで得たエラーです。
AttributeError at /home/
'tuple' object has no attribute 'save'
Request Method: POST
//ねずみ