Skip to content

amchii/FlaskAlbumy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

来自于李辉的Flask书上的示例程序:Albumy , 个人意见向地改进了少许代码,修复了一些已知bug :

  1. 新评论未进行photo.can_comment验证的bug

    if not photo.can_comment

  2. 收藏关注时登陆后的跳转问题

    if request.method.lower() == 'get':

  3. 鼠标在头像上悬浮的时候出现的用户信息不能即时更新

    $el.popover('dispose');

  4. 关注页分页的bug

    pagination = user.following.filter(Follow.followed_id != user.id).paginate(page=page, per_page=per_page)

  5. 评论区评论时间的tooltip显示当前时间的bug

    ​ 给tooltip的title传递函数可以正常显示,和Bluelog相同。

  6. 更换头像时若上传图片后不更新头像,则user.avatar_raw会被取代

    ​ 这个通过给User新建一个avatar_raw_temp字段,用于保存上传头像原图时的文件名。在 change_avatar.html 和更换头像的视图函数中通过has_temp参数进行判断

About

Learn from greyli's flask book, fix some bugs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published