本帖最后由 katapy 于 2024-10-29 09:54 编辑
请问下楼主这个程序只有后台,没有前台吗?我看程序的路径并没有您图片上显示的路径呢
具体怎么使用,能给个详细的方式学习吗
既然是django程序,最好能告诉我们以下后台的密码设置以及访问路径
谢谢
以下是程序中的路径
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('wechat/', include('wechat_app.urls')),
]
# wechat_app/urls.py
from django.urls import path
from .views import send_message, ping, check_wechat_status, get_dialogs_view, get_dialogs_by_time_blocks_view, \
send_file_view
urlpatterns = [
path('ping/', ping, name='ping'),
path('send_message/', send_message, name='send_message'),
path('check_wechat_status/', check_wechat_status, name='check_wechat_status'),
path('get_dialogs/', get_dialogs_view, name='get_dialogs'),
path('get_dialogs_by_time_blocks/', get_dialogs_by_time_blocks_view, name='get_dialogs_by_time_blocks'),
path('send_file/', send_file_view, name='send_file'),
]
|