为了账号安全,请及时绑定邮箱和手机立即绑定

使用 Django 和 React 进行路由

使用 Django 和 React 进行路由

www说 2023-03-16 10:55:55
我对使用 Django 很陌生,我一直依赖一些教程将这个链接到 React,但问题是最初(当我打开 127.0.0.1:8000 时)React 完美地加载了路由,然后当我重新加载页面 Django 试图从中解释路径urls.py,但显然找不到它。错误是:Page not found (404) Using the URLconf defined in memberstack.urls, Django tried these URL patterns, in this order:admin/api/token-auth/core/我希望你能帮助我,在此先感谢我的项目/urls.pyfrom django.contrib import adminfrom django.urls import path, includefrom rest_framework_jwt.views import obtain_jwt_tokenfrom frontend.views import indexurlpatterns = [    path('', include('frontend.urls')),    path('admin/', admin.site.urls),    path('api/token-auth/', obtain_jwt_token),    path('core/', include('core.urls')),]前端/urls.pyfrom django.urls import pathfrom . import viewsurlpatterns = [    path('', views.index),]前端/views.pyfrom django.shortcuts import renderdef index(request):    return render(request, 'frontend/index.html')
查看完整描述

1 回答

?
慕后森

TA贡献1802条经验 获得超5个赞

为此,您必须使用包罗万象,以便 React 处理所有路由,而不是那里的 django。


from django.urls import path, re_path

from . import views


urlpatterns = [

    path('', include('frontend.urls')),

    path('admin/', admin.site.urls),

    path('api/token-auth/', obtain_jwt_token),

    path('core/', include('core.urls')),

    re_path(r'^(?:.*)/?$', include('frontend.urls')),

]

或者


urlpatterns = [

    path('', views.index),

    re_path(r'^(?:.*)/?$', views.index)

]

我认为更好的做法是实施 Django-Rest-Framework 并单独构建它们。


查看完整回答
反对 回复 2023-03-16
  • 1 回答
  • 0 关注
  • 87 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信