溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

flask上傳作品之dbm操作怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-04-24 10:16:50 來(lái)源:億速云 閱讀:154 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容主要講解“flask上傳作品之dbm操作怎么實(shí)現(xiàn)”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“flask上傳作品之dbm操作怎么實(shí)現(xiàn)”吧!

    一,前言

    需求:

    活動(dòng)需要手動(dòng)定為歷史活動(dòng),不要按照年份自動(dòng)變?yōu)闅v史活動(dòng)。

    二,dbm數(shù)據(jù)庫(kù)操作-match_set

    2.1,后端響應(yīng)請(qǐng)求

    增加了應(yīng)該路由-match_set。

    flask上傳作品之dbm操作怎么實(shí)現(xiàn)

    上文代碼塊解釋?zhuān)?br/>這部分是,前端用戶(hù)請(qǐng)求match_set,后端返回給前端的內(nèi)容。
    原理就是遍歷我們需要的dbm數(shù)據(jù)庫(kù)里面的內(nèi)容,放到合適的位置。傳遞給前端。
    如下:

    022|包頭市第二界文化旅游創(chuàng)意作品大賽|2,2023|朱博的個(gè)人作品大賽|,2024|朱博的大賽|,2025|朱博我的的大賽|,2026|朱博我的的大賽|,2027|朱博我的你的的
    大賽|,2028|朱博我的你的的大賽|,2029|朱博我的你的的大賽|,2030|朱博我的你的的大賽|', ‘pw_nums’: ‘3’, ‘btn_3’: ‘大賽成績(jī)|/result’, ‘btn_1’: ‘上傳
    作品|/new_post’, ‘match_name’: ‘朱博我的你的的大賽’, ‘upload’: ‘false’, ‘btn_4’: ‘往期回顧|/past’, ‘time’: ‘1’, ‘match’: ‘2030’, ‘time_3_posts’
    : ‘’, ‘btn_5’: ‘評(píng)委入口|/admin’, ‘time_2_posts’: ‘1’, ‘switch’: ‘’, ‘picture’: ‘’, ‘image’: ‘u=2566611882,1193878858&fm=253&fmt=auto&app=138&f
    =JPEG.webp’

    測(cè)試用的,有點(diǎn)亂哈哈。

    2.2,前端返回表單

     <label for="">目標(biāo)賽事名稱(chēng):</label>
     <input type="text" name="match_name" {% if time %}value="{{match_name}}"{% endif %}>
      <label for="">目標(biāo)賽事標(biāo)識(shí):</label>
      <input type="text" name="match" {% if time %}value="{{match}}"{% endif %}>
      <label for="">目標(biāo)賽事設(shè)置(1:不設(shè)置為歷史歷史賽事 2:設(shè)置為歷史歷史賽事):</label>
      <input type="text" name="switch">
      <button class="button button--secondary" type="submit">提交</button>

    前端如上,非常簡(jiǎn)單的一個(gè)收集表單。
    前端發(fā)起提交按鈕,提交給后端,后端再處理。

    2.3,后端再次響應(yīng),保存操作

    if request.method == "POST":

    上文代碼解釋?zhuān)号袛啵岸耸且詐ost的方式傳到后端的。

     if key == "match":
         #print("當(dāng)前路徑為1")
            if "past_matchs" in db_config:
                if value not in db_config["past_matchs"].decode():
                    flag=0
                else:
                    #print("當(dāng)前路徑為4")
                    past_matchss = db_config["past_matchs"].decode().split(',')
                    #print(db_config["past_matchs"].decode())
                    #print(past_matchss)
                    for i in past_matchss:
                        jj=i
                        break

    上文代碼塊解釋?zhuān)骸具@一塊代碼很多。展示部分代碼,下文貼全部代碼?!?br/>這里的邏輯即為復(fù)雜,因?yàn)楸闅v的時(shí)候,我們之間遍歷他的key和value。
    我們找到目標(biāo)key == “match”:。
    下文判斷。如果我們的dbm數(shù)據(jù)庫(kù)里含有past_matchs的話(huà)執(zhí)行{
    如果我們的目標(biāo)value值不再dbm數(shù)據(jù)庫(kù)里,我們吧flag賦值為0.下面判斷,如果flag==0說(shuō)明,{該賽事不存在}
    如果value值在dbm數(shù)據(jù)庫(kù)里{

    past_matchss = db_config["past_matchs"].decode().split(',')

    獲取到目標(biāo)值。

    flask上傳作品之dbm操作怎么實(shí)現(xiàn)

    如上文代碼邏輯?!敬篌w來(lái)講:我重新寫(xiě)了一個(gè)類(lèi)別,因?yàn)椴荒軇h除的原因,我選擇重新賦值遍歷,累加】

    最后:

    if(flag==0):
    	flash("該賽事不存在")
    if(flag==1):
        db.session.commit()
        flash("提交成功", "success")
    return redirect(url_for('match_set'))

    上文代碼解釋?zhuān)?br/>因?yàn)槲覀冎敖oflag賦值為1。如果沒(méi)有目標(biāo)value在我們的數(shù)據(jù)庫(kù)里的話(huà),falg會(huì)賦值為0。
    不執(zhí)行更改數(shù)據(jù)庫(kù)的操作。反之更改。
    最后重定向到目標(biāo)頁(yè)面,此部分結(jié)束!

    三,附代碼

    @min_role_required(ROLES["mod"])
    @app.route('/match_set/', methods=['GET', 'POST'])
    def match_set():
        flag=1
        if request.method == "POST":
            switch2=''
            for key, value in request.form.items():
                if key == "switch":
                    switch2=value
            for key, value in request.form.items():
                # print("標(biāo)記key",key)
                # print("標(biāo)記value",value)
                if key == "match":
                    #print("當(dāng)前路徑為1")
                    if "past_matchs" in db_config:
                        if value not in db_config["past_matchs"].decode():
                            flag=0
                        else:
                            #print("當(dāng)前路徑為4")
                            past_matchss = db_config["past_matchs"].decode().split(',')
                            #print(db_config["past_matchs"].decode())
                            #print(past_matchss)
                            for i in past_matchss:
                                jj=i
                                break
                            iip=0
                            for i in past_matchss:
                                if(iip>0):
                                    #print(i)
                                    if(value not in i):
                                        jj=jj+","+i
                                    if(value in i):
                                        #print(switch2)
                                        if(i.split("|")[2]==switch2):
                                            jj=jj+","+i
                                            #print("正確")
                                        else:
                                            #print(value+"|"+request.form.get('match_name')+"|"+switch2)
                                            jj=jj+","+(value+"|"+request.form.get('match_name')+"|"+switch2)
                                            #print("錯(cuò)誤")
                                        #print(i)
                                iip=iip+1
                            db_config["past_matchs"]=jj
                    else:
                        db_config["past_matchs"] = f"{value}|{request.form.get('match_name')}|{request.form.get('switch')}"
                        #print("當(dāng)前路徑為3")
            if(flag==0):
                flash("該賽事不存在")
            if(flag==1):
                db.session.commit()
                flash("提交成功", "success")
            return redirect(url_for('match_set'))
        attrs_dict = {}
        for k in db_config.keys():
            attrs_dict[k.decode()] = db_config[k].decode()
        #print(attrs_dict)
        past_matchs = db_config["past_matchs"].decode().split(',')
        past_qian=db_config["match"].decode()
        pasts = []
        for match_tuple in past_matchs:
            if not match_tuple:
                continue
            match_mark = match_tuple.split("|")[0]
            match_name = match_tuple.split("|")[1]
            match_zhuangtai = match_tuple.split("|")[2]
            data = {}
            data["title"] = match_name
            data["count"] = Post.query.filter_by(match=match_mark).count()
            data["url"] = url_for('index', match=match_mark)
            data["zhuangtai"] = match_zhuangtai
            data["muqian"] = past_qian
            data["biaoshi"]=match_mark
            pasts.append(data)
        #return render_template('past.html', pasts=pasts)
        return render_template('admin/match_set.html', pasts=pasts)

    到此,相信大家對(duì)“flask上傳作品之dbm操作怎么實(shí)現(xiàn)”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

    向AI問(wèn)一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI