摘要:
xadmin可视化上传图片 # 1.管理员登入录入数据 Banner.vue组件改造 <!-- 修改Banner.vue组件 --> <template> <el-carousel height="520px" :interval="3000" arrow="always"> <el-carouse 阅读全文
摘要:
xadmin后台管理 安装:luffy虚拟环境下 # >: pip install https://codeload.github.com/sshwsfc/xadmin/zip/django2 注册app:dev.py INSTALLED_APPS = [ # ... # xamin主体模块 'xa 阅读全文
摘要:
登录前端页面 组件 <template> <div class="login box"> <img src="@/assets/img/Loginbg.jpg" alt=""> <div class="login"> <div class="login-title"> <img src="@/ass 阅读全文
摘要:
home数据库设计 轮播图 依赖 安装pillow: >: pip install pillow 修订manage.py加载dev os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'luffyapi.settings.dev') 模型类:home/mo 阅读全文
摘要:
静态目录 # dev.py 配置 # 1.访问静态文件的url地址前缀 STATIC_URL = '/static/' # 2. 设置django的静态文件目录 STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static") ] # 静态目录创建 # 3. 阅读全文
摘要:
Git线上操作 选择线上仓库 """1.注册码云账号并登录:https://gitee.com/2.创建仓库(课堂截图)3.本地与服务器仓库建立连接""""""1)本地配置线上的账号与邮箱>: git config --global user.name "doctor_owen">: git con 阅读全文
摘要:
分离的前后台交互 后台处理跨域 '''https://github.com/ottoyiu/django-cors-headers/安装django-cors-headers模块在settings.py中配置# 注册appINSTALLED_APPS = [ ... 'corsheaders'] 阅读全文
摘要:
home应用的创建 注册drf、弃用jdango的csrf # dev.py INSTALLED_APPS = [ # ... 'rest_framework', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'd 阅读全文
摘要:
前端主页 准备 """ 1.按照下图将该删除的删除,在增加的增加,图片资源在课件的资源中 """ 各文件修改内容 vue.config.js 项目配置文件 module.exports = { devServer: { host: 'www.luffy.cn', port: 8080 } } mai 阅读全文
摘要:
配置站点 修改hosts文件 """ hosts文件涉及的dns解析 1.找到hosts文件 windows: C:\Windows\System32\drivers\etc\hosts mac|linux:/etc/hosts 2.在host文件中新增下面两句话,文件修改权限自己解决 127.0. 阅读全文