What's the best way to store Phone number in Django models

后端 未结 8 2212
情歌与酒
情歌与酒 2020-11-27 09:12

I am storing a phone number in model like this:

phone_number = models.CharField(max_length=12)

User would enter a phone number

8条回答
  •  粉色の甜心
    2020-11-27 09:28

    Others mentioned django-phonenumber-field. To get the display format how you want you need to set PHONENUMBER_DEFAULT_FORMAT setting to "E164", "INTERNATIONAL", "NATIONAL", or "RFC3966", however you want it displayed. See the GitHub source.

提交回复
热议问题