flask 上傳頭像

來源:互聯網
上載者:User

標籤:filename   格式   person   nullable   htm   format   jpg   and   height   

 

     上傳頭像,自己感覺了好久,就是上傳檔案唄其實,存在一個路徑,資料庫儲存這個路徑,然後展示給前端,啥都不說,看怎麼實現的。

資料庫設定如下

user_image=db.Column(db.String(252),nullable=True)

form 表單設計:

avatar=FileField(‘頭像‘)

 

 後端實現代碼

 avatar=request.files[‘avatar‘] fanme=avatar.filename upfile=os.getcwd()+(‘/app/static/avatar/‘) ALLOWER_EXIT=[‘pang‘,‘jpg‘,‘jpeg‘,‘jig‘]flag=‘.‘ in fanme and fanme.split(‘.‘)[1] in ALLOWER_EXITif not flag:     return render_template(‘editperson.html‘,form=form) avatar.save(‘{}{}{}‘.format(upfile,user.username,fanme)) user.user_image=‘/static/avatar/{}{}‘.format(user.username,fanme) db.session.add(user)

儲存路徑是

/static/avatar/,支援格式 pang、jpg、jpeg等格式,這個可以根據自己的需求進行設定。 
儲存後會在資料庫儲存一個路徑
最後實現後資料庫

接下來是前端的展示

{% if username.user_image%}<img   src="{{username.user_image}}" style="height:80px;">{%else%}<img src="/static/img/0.jpg" style="height:70px;width:80px">{%endif%}

 

這裡說明下,這裡的後端實現上傳的頭像的代碼 在Windows上回報錯,說檔案不存在,我試著去修改了,就是路徑名字別太長,

路徑 名字短可以,長了就報錯。Windows開發很有弊端,在Ubuntu 實現沒有一點問題

項目地址 https://github.com/liwanlei/flask_blog

flask 上傳頭像

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.