资源简介

压缩包内附用户使用手册 针对不同的用户层次,具有不同的功能: (1) 学生用户能够进行提问、追问、检索问题、查看过往问题 (2) 教师用户可以进行回答、追答、受到提问同时收到提醒 (3) 所有的问题和回答不经审核可以直接发布,但管理员用户有权删除提问和回答。 (4) 未登陆的游客身份也有权查阅/搜索问题

资源截图

代码片段和文件信息

#!/usr/bin/env python
“““Django‘s command-line utility for administrative tasks.“““
import os
import sys


def main():
    os.environ.setdefault(‘DJANGO_SETTINGS_MODULE‘ ‘OAS.settings‘)
    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            “Couldn‘t import Django. Are you sure it‘s installed and “
            “available on your PYTHONPATH environment variable? Did you “
            “forget to activate a virtual environment?“
        ) from exc
    execute_from_command_line(sys.argv)


if __name__ == ‘__main__‘:
    main()

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-06-13 19:48  OAS\
     目录           0  2019-06-13 19:48  OAS\.idea\
     文件         300  2019-06-13 19:48  OAS\.idea\misc.xml
     文件         265  2019-06-13 19:48  OAS\.idea\modules.xml
     文件        1242  2019-06-13 19:48  OAS\.idea\OAS.iml
     文件       39255  2019-06-13 19:48  OAS\.idea\workspace.xml
     目录           0  2019-06-13 19:48  OAS\__pycache__\
     文件         757  2019-06-13 19:48  OAS\__pycache__\manage.cpython-37.pyc
     目录           0  2019-06-13 19:48  OAS\first\
     文件           0  2019-06-13 19:48  OAS\first\__init__.py
     目录           0  2019-06-13 19:48  OAS\first\__pycache__\
     文件         118  2019-06-13 19:48  OAS\first\__pycache__\__init__.cpython-37.pyc
     文件         928  2019-06-13 19:48  OAS\first\__pycache__\admin.cpython-37.pyc
     文件        1603  2019-06-13 19:48  OAS\first\__pycache__\models.cpython-37.pyc
     文件         673  2019-06-13 19:48  OAS\first\__pycache__\urls.cpython-37.pyc
     文件        7071  2019-06-13 19:48  OAS\first\__pycache__\views.cpython-37.pyc
     文件         610  2019-06-13 19:48  OAS\first\admin.py
     文件          90  2019-06-13 19:48  OAS\first\apps.py
     文件           0  2019-06-13 19:48  OAS\first\forms.py
     目录           0  2019-06-13 19:48  OAS\first\migrations\
     文件        2247  2019-06-13 19:48  OAS\first\migrations\0001_initial.py
     文件         525  2019-06-13 19:48  OAS\first\migrations\0002_auto_20190530_2242.py
     文件         350  2019-06-13 19:48  OAS\first\migrations\0003_remove_question_update_date.py
     文件           0  2019-06-13 19:48  OAS\first\migrations\__init__.py
     目录           0  2019-06-13 19:48  OAS\first\migrations\__pycache__\
     文件        1464  2019-06-13 19:48  OAS\first\migrations\__pycache__\0001_initial.cpython-37.pyc
     文件         619  2019-06-13 19:48  OAS\first\migrations\__pycache__\0002_auto_20190530_2242.cpython-37.pyc
     文件         506  2019-06-13 19:48  OAS\first\migrations\__pycache__\0003_remove_question_update_date.cpython-37.pyc
     文件         129  2019-06-13 19:48  OAS\first\migrations\__pycache__\__init__.cpython-37.pyc
     文件        1074  2019-06-13 19:48  OAS\first\models.py
     目录           0  2019-06-13 19:48  OAS\first\templates\
............此处省略271个文件信息

评论

共有 条评论