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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用自定義表單中的數(shù)據(jù)更新數(shù)據(jù)庫(kù)

使用自定義表單中的數(shù)據(jù)更新數(shù)據(jù)庫(kù)

米脂 2023-05-23 15:52:59
好的,所以我想使用如下所示的自定義表單更新有關(guān)用戶的信息。<form action="" > <!--csrftoken-->  <input type="text" placeholder="Your new name" name="name">  <input type="text" placeholder="Your new email" name="email">  <input type="text" placeholder="Your new number" name="number">  <button type="submit" class="raise">Submit</button></form>如何用填充的數(shù)據(jù)更新用戶。假設(shè)用戶填寫(xiě)了電話號(hào)碼和電子郵件字段,其余部分留空,電子郵件和電話號(hào)碼已更改,但姓名保持不變。我正在考慮預(yù)填充表單,但這需要另一個(gè)數(shù)據(jù)庫(kù)請(qǐng)求,我想避免這種情況。def updateCustomer(request):    current           = request.user    if request.method == 'POST':        newphone      = request.POST['newPhone']        newemail      = request.POST['email']        newname       = request.POST['name']             addingToBase  = Customer.objects.get(user=current)        xD            = addingToBase(email=newemail,name=newname,phone=newphone)        xD.save()        return redirect('home')
查看完整描述

1 回答

?
犯罪嫌疑人X

TA貢獻(xiàn)2080條經(jīng)驗(yàn) 獲得超4個(gè)贊

在分配返回值之前檢查返回值怎么樣?


def updateCustomer(request):

    current           = request.user

    if request.method == 'POST':

        newphone      = request.POST['number']

        newemail      = request.POST['email']

        newname       = request.POST['name']    

 

        curCust  = Customer.objects.get(user=current)


        if newphone:

            curCust.phone = newphone


        if newemail:

            curCust.email = newemail


        if newname:

            curCust.name = newname


        if newphone or newemail or newname:            

            curCust.save()


        return redirect('home')


查看完整回答
反對(duì) 回復(fù) 2023-05-23
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)