URLField附加到'http://127.0.0.1:8000/'

时间:2020-02-19 21:00:03

标签: django django-models django-templates

我有一个ULRField,我正在尝试使用href进行链接,但是当我单击它时,我倾向于使用http://127.0.0.1:8000/www.example.com而不是www.example.com

models.py

class Website(models.Model):
    website = models.URLField(max_length=100)

template.html

<a href="{{ dealer.website }}">{{ dealer.website }}</p>

1 个答案:

答案 0 :(得分:1)

将我的评论移至答案:

使用https://协议保存值。