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

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

如何在同一個(gè)函數(shù)python flask中渲染表單和接受值

如何在同一個(gè)函數(shù)python flask中渲染表單和接受值

米脂 2022-12-20 14:24:34
在 flask 中有什么方法可以呈現(xiàn)表單并單擊提交按鈕獲取值。我得到的錯(cuò)誤是 404 未找到,我不知道為什么。有沒有更好的方法來做到這一點(diǎn)。@application.route('/cargohandled',methods=['POST'])def cargohandled():    if request.method == 'post':        postman = request.form['postman']        postype = request.form['postype']        return {'postman' : postman, 'postype': postype}    else:        cursor = connection.cursor()        cursor.execute("SELECT DISTINCT `PortName` From trarep")        portname = cursor.fetchall()        cursor.execute("SELECT DISTINCT `PortType` From trarep")        porttype = cursor.fetchall()        return render_template('cargo_handled.htm.j2',title = 'Cargo Handled',portname = portname,porttype= porttype)    return "CG"
查看完整描述

1 回答

?
瀟湘沐

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

您需要同時(shí)允許 GET 和 POST。

你應(yīng)該在你的if條款中將“post”大寫。


您可以取消該else:子句,因?yàn)槿绻鹯equest.method != 'POST'.


finalreturn永遠(yuǎn)不會(huì)被執(zhí)行,所以你也可以忽略它。


@application.route('/cargohandled',methods=['GET','POST'])

def cargohandled():

    if request.method == 'POST':

        postman = request.form['postman']

        postype = request.form['postype']

        return {'postman' : postman, 'postype': postype}

    cursor = connection.cursor()

    cursor.execute("SELECT DISTINCT `PortName` From trarep")

    portname = cursor.fetchall()

    cursor.execute("SELECT DISTINCT `PortType` From trarep")

    porttype = cursor.fetchall()

    return render_template('cargo_handled.htm.j2',title = 'Cargo Handled',

                           portname = portname,porttype= porttype)


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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