摘要: main.js // 在new vue之前添加变量webSite// 将Vue实例添加到Vue的原型链上Vue.prototype.$webSite = 'http://127.0.0.1:8000'; login.vue 使用: consol.log(this.$webSite) 阅读全文
posted @ 2023-08-10 23:59 lytcreate 阅读(249) 评论(0) 推荐(0)
摘要: 原因: settings.py 未配置静态资源位置 urls.py 未配置相应路由 解决方法: 在项目目录下新建 static用于存放静态文件 1 settings.py 2 3 STATIC_URL = 'static/' 4 STATICFILES_DIRS = [ 5 BASE_DIR / " 阅读全文
posted @ 2023-08-10 14:35 lytcreate 阅读(120) 评论(0) 推荐(0)