Using the URLconf defined in djangoexam.urls, Django tried these URL patterns, in this order: admin/ order_data/ [name='order_data'] order_chart/ [name='order_chart'] [name='index'] month_data/ month_chart/ [name='month_chart'] The current path, month_chart/month_data, didn’t match any of these.
时间: 2024-04-05 19:32:12 浏览: 198
Django 路由系统URLconf的使用
这个报错信息是Django在匹配URL时发现当前访问的路径"month_chart/month_data"不符合任何一个定义的URL模式。在Django中,URLconf用于将URL映射到视图函数。根据这个报错信息,你需要检查你的URLconf文件中是否定义了名为"month_chart/month_data"的URL模式,或者检查你的URL拼写是否正确。另外,你也需要确保你的视图函数已经正确定义并且可以处理这个URL模式。
阅读全文