摘要: 定义评论的视图函数@app.route('/comment/',methods=['POST'])def comment():读取前端页面数据,保存到数据库中 @app.route('/comments/',methods=['POST']) @loginFirst def comments(): comment=request.form.get('new_comment') ... 阅读全文
posted @ 2017-12-08 12:12 袁颖琳 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 建立评论的对象关系映射。 阅读全文
posted @ 2017-12-05 12:46 袁颖琳 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 首页列表显示全部问答: 将数据库查询结果传递到前端页面 Question.query.all() @app.route('/') def index(): context = { # 'user': 'YUAN', 'questions': Question.query.order_by('-creat_time').all() } re... 阅读全文
posted @ 2017-12-04 00:45 袁颖琳 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1. 在首页添加显示问答的列表,并定义好相应的样式。 无序列表 <ul > <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> 2. 用字典向index.html传递参数。 阅读全文
posted @ 2017-11-29 21:47 袁颖琳 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 编写要求登录的装饰器 from functools import wraps def loginFirst(func): #参数是函数 @wraps(func) def wrapper(*args, ** kwargs): #定义个函数将其返回 #要求登录 return func(*args, ** 阅读全文
posted @ 2017-11-28 22:14 袁颖琳 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 用上下文处理器app_context_processor定义函数 获取session中保存的值 返回字典 @app.context_processor def mycontext(): usern = session.get('user') if usern: return {'username': usern} else: return... 阅读全文
posted @ 2017-11-24 11:01 袁颖琳 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 登录功能完成: session: 阅读全文
posted @ 2017-11-21 15:57 袁颖琳 阅读(215) 评论(0) 推荐(0) 编辑
摘要: js文件: onclick函数return True时才提交表单,return False时不提交表单。 function fnLogin() { var oUname = document.getElementById("uname"); var oError = document.getElem 阅读全文
posted @ 2017-11-17 16:51 袁颖琳 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 增加:db.session.add(user)db.session.commit() 查询:User.query.filter(User.username == 'mis1114').first() 修改:user.password = '111111'db.session.commit() 删除:db.session.delete(user)db.session.commit() from f... 阅读全文
posted @ 2017-11-15 22:03 袁颖琳 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 安装与配置python3.6+flask+mysql数据库 下载安装MySQL数据库 下载安装MySQL-python 中间件 pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy) mysql创建数据库 数据库配置信息config.py SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://roo... 阅读全文
posted @ 2017-11-14 20:47 袁颖琳 阅读(175) 评论(0) 推荐(0) 编辑