- 1、环境配置
- 2、生成初始项目
- 3、中间过程解决的问题
使用Pycharm2017,python 3.6.5 ,Django 3.2.9
2、生成初始项目在文件中选择新项目创建Django项目,参考:https://www.cnblogs.com/kylinlin/p/5184592.html
3.1在settings.py中要将路径’DIRS’:[]改为当前templates,否则访问http://127.0.0.1:8000/index会找不到,提示TemplateDoesNotExist at /index/问题。
'DIRS': [os.path.join(base_DIR,"templates/")]
3.2在urls.py中导入没有作者的url函数模块,只有path模块,但效果一样。
from django.contrib import admin from django.urls import path # url from Online_Settlement_Ob.views import index #导入views.py文件中的index函数 urlpatterns = [ path('admin/', admin.site.urls), path('index/', index)
3.3vews.py 测试传递为一段话使用:
from django.http import HttpResponse def index(request): return HttpResponse('我爱中国')
传递自己写的html:
from django.shortcuts import render def index(request): return render(request, 'index.html')
访问自己的html效果,无样式
目前还没有弄明白为什么自己写的网页不能加载样式问题。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)