摘要: 出版社首页 新闻中心 图书中心 登陆界面 注册界面 阅读全文
posted @ 2018-07-09 18:24 yishhaoo 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 一、系统概要说明 我这次课程设计的主题是影评,一个可以让用户发表电影评论的平台,其他用户看到这篇影评可以发表他的评论,让用户能参与互动,这样用户交流更加的便捷。用户在首页可以对帖子进行搜索,这样更方便用户搜索到感兴趣的电影影评。因此,系统的设计包括登录、注册、首页、帖子发布、帖子搜索、详情页、个人中 阅读全文
posted @ 2018-06-16 12:57 yishhaoo 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: 1.DDS和IDDS的组成。 DSS决策支持系统(Decision Support System)是一个基于计算机用于支持业务或组织决策活动的信息系统。 DSS服务于组织管理、运营和规划管理层(通常是中级和高级管理层),并帮助人们对可能快速变化并且不容易预测结果的问题做出决策。决策支持系统可以全计算 阅读全文
posted @ 2018-01-05 18:58 yishhaoo 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 经过一个学期的Python+mysql的web建设技术课程学习,我已经掌握了基本的数据库后台跟页面前端联系到一起的简单web设计,对Python这门语言也有了一定程度的掌握跟了解,我发现Python语言很简洁,比如,完成同一个任务,C语言要写1000行代码,Java只需要写100行,而Python可 阅读全文
posted @ 2018-01-02 11:17 yishhaoo 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.更新User对象,设置对内的_password class User(db.Model): __tablename__ = 'user' _password = db.Column(db.String(200), nullable=False) #内部使用 2.编写对外的password fro 阅读全文
posted @ 2017-12-22 19:37 yishhaoo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: <input name="q" type="text" placeholder="请输入关键字"> 加载查询结果:return render_template('index.html', question=qu) 运行截图: 阅读全文
posted @ 2017-12-20 00:14 yishhaoo 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 个人中心—视图函数带标签页面参数tag@app.route('/usercenter/<user_id>/<tag>')def usercenter(user_id, tag): if tag == ‘1': return render_template('usercenter1.html', ** 阅读全文
posted @ 2017-12-15 09:59 yishhaoo 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1.新页面user.html,用<ul ><li role="presentation"> 实现标签页导航。<ul class="nav nav-tabs"> <li role="presentation"><a href="#">Home</a></li> <li role="presentati 阅读全文
posted @ 2017-12-14 00:19 yishhaoo 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 显示所有评论{% for foo in ques.comments %} html文件: <h4>评论:({{ ques.comments|length }})</h4> <ul class="list-unstyled"> {% for foo in ques.comments %} <li cl 阅读全文
posted @ 2017-12-12 13:55 yishhaoo 阅读(154) 评论(0) 推荐(0) 编辑
摘要: py文件: 读取前端页面数据,保存到数据库中 html文件: 运行截图: 阅读全文
posted @ 2017-12-08 10:54 yishhaoo 阅读(148) 评论(0) 推荐(0) 编辑