这里是引用
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
提示:这里可以添加本文要记录的大概内容:
例如:随着人工智能的不断发展,机器学习这门技术也越来越重要,很多人都开启了学习机器学习,本文就介绍了机器学习的基础内容。
提示:以下是本篇文章正文内容,下面案例可供参考
示例:运用pycharm创建一个django文件夹(如:my_data),该文件夹内创建一个子文件夹app(如:app01):
代码如下(示例):
from django.shortcuts import render
def index(request):
return render(request,'index.html')
代码如下(示例):
from django.urls import path
from app01 import views
urlpatterns = [
path('index/', views.index),
]
python manage.py runserver IP(自己定义,默认8000)
, 终端输出:
代码如下(示例):
Performing system checks...
System check identified no issues (0 silenced).
You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
April 05, 2023 - 07:40:27
Django version 4.1.7, using settings 'my_site.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
该处使用的url网络请求的数据。