第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

以更具可讀性的格式顯示電話號碼

以更具可讀性的格式顯示電話號碼

猛跑小豬 2022-10-05 09:22:10
請告訴我如何正確解決以下問題數(shù)據(jù)庫中有一個電話號碼。在網站上,它以與數(shù)據(jù)庫中記錄的相同形式顯示+1234567890我需要這個數(shù)字看起來像這樣,在網站頁面上,無需在數(shù)據(jù)庫中進行修改+(123) 456-7890views.pydef Data(request):     card = Cards.objects.filter(is_published=True)         context = {'card': card}                 return render(request, 'templates/cards.html', context)models.pyphone = models.CharField(max_length=12, null=True)卡片.html{{ card.phone }}謝謝!
查看完整描述

2 回答

?
大話西游666

TA貢獻1817條經驗 獲得超14個贊

Django不會自己格式化數(shù)字。但是,您可以構建自己的函數(shù)來執(zhí)行此操作??紤]使用(鏈接)。在 models.py 中為此創(chuàng)建另一個函數(shù):python-phonenumbers


import phonenumbers


class Cards:

    phone = models.CharField(max_length=12, null=True)

    .....


    def formatted_phone_number(self, country=None):

        rtval = phonenumbers.parse(self.phone, country)

        return rtval

然后在您的:template


{{ card.formatted_phone_number }}

注意:不能直接從模板傳遞參數(shù)。因此,該函數(shù)必須事先知道您將使用哪種國家/地區(qū)格式。


查看完整回答
反對 回復 2022-10-05
?
ABOUTYOU

TA貢獻1812條經驗 獲得超5個贊

您可以編寫此幫助程序函數(shù):


def insert_str(string, str_to_insert, index):

    return string[:index] + str_to_insert + string[index:]

,然后使用它來在需要時插入字符。如果括號的位置是固定的(每個電話號碼都相同,如您提供的示例所示),那么您可以簡單地執(zhí)行以下操作:


phone = insert_str(phone, '(', 1)

phone = insert_str(phone, '(', 5) # there's already an extra '('

phone = insert_str(phone, ' ', 6)

phone = insert_str(phone, '-', 10)


查看完整回答
反對 回復 2022-10-05
  • 2 回答
  • 0 關注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號