摘要: 一:系统概要说明 该网站是沿用了Python+Flask+MysqL的web建设技术开发的一个网站,其内容是关于一款在网络游戏界叱咤风云了近十年的爆火游戏——地下城与勇士,简称DNF,其主要用于供众多DNF爱好者讨论其角色的风格,包括各种玩家类型的优势和劣势,玩法和流派等等。首先对于未注册的玩家可以 阅读全文
posted @ 2018-06-16 02:25 017廖佳辉 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一、个人学期总结 本学期从一开始便接触Python语言,感觉Python还是比较容易上手的。从一开始简单的几何图形制作到最后网页数据库的链接实现,这个过程其实不算长,不过也因此最后作业的完成也比较简单。如果想从事这方面的工作,这学期所学的知识最多也只能是算基础,让自己在未来想深入学习Python有能 阅读全文
posted @ 2018-01-07 21:24 017廖佳辉 阅读(516) 评论(0) 推荐(0) 编辑
摘要: class User(db.Model): __tablename__ = 'user' id = db.Column(db.Integer, primary_key=True, autoincrement=True) username = db.Column(db.String(20), nullable=False) _password = db.Column... 阅读全文
posted @ 2017-12-22 21:55 017廖佳辉 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1 @app.route('/search/') 2 def search(): 3 cha=request.args.get('q') 4 chaxun=Wenda.query.filter( 5 or_( 6 Wenda.title.contains(cha), 7 Wenda.detail.contains(c... 阅读全文
posted @ 2017-12-20 21:45 017廖佳辉 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1 @app.route('/usercenter//') 2 @loginFirst 3 def usercenter(user_id,tag): 4 user = User.query.filter(User.id==user_id).first 5 context ={ 6 'user':user 7 } 8 if tag =... 阅读全文
posted @ 2017-12-15 21:32 017廖佳辉 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 全部提问 全部评论 个人信息 复制代码 {% extends "user.html" %} {% block usercenterbody %} {{ username }}全部问答"> {% for foo in comments %} ... 阅读全文
posted @ 2017-12-14 21:42 017廖佳辉 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 显示所有评论{% for foo in ques.comments %} 所有评论排序uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc)) 显示评论条数{{ 阅读全文
posted @ 2017-12-13 21:47 017廖佳辉 阅读(123) 评论(0) 推荐(0) 编辑
摘要: {% block body %} {% for foo in questions %} 作者:{{ foo.author_id }} ... 阅读全文
posted @ 2017-12-02 21:12 017廖佳辉 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 Hello, world! 6 7 8 This is a template for a simple marketing or in... 阅读全文
posted @ 2017-11-30 21:41 017廖佳辉 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 from flask import Flask, render_template, request, redirect, url_for, session 2 from flask_sqlalchemy import SQLAlchemy 3 import config 4 from functools import wraps 5 from datetime impor... 阅读全文
posted @ 2017-11-28 21:04 017廖佳辉 阅读(114) 评论(0) 推荐(0) 编辑