针对一下问题,可以试一下此方法
- 1 错误提示
NoReverseMatch at /index/
Reverse for ‘study_section’ with arguments ‘(‘12’,)’ not found. 1 pattern(s) tried: [‘apppost/study_section/(?P<html_page>[0-9]+)/(?P<page_index>[0-9]+)/$’]
- 2 错误提示
NoReverseMatch at /index/
Reverse for ‘study_section’ with no arguments not found. 1 pattern(s) tried: [‘apppost/study_section/(?P<html_page>[0-9]+)/(?P<page_index>[0-9]+)/$’]
解决方法
这个是因为我们的视图函数定义的是否需要传递参数
path('study_section/<int:html_page>/<int:page_index>/',
views.study_section,name='study_section'),`
可以看到这个视图函数需要两个参数,这个时候我们的前端语言是
<li><a href="{%url 'apppost:study_section' %}">
{{minsection.0}}</a></li>
这样显然是错误的,没有传递参数,怎么传递了
看下面的代码
** {%url ‘apppost:study_section’ ‘1’ ‘1’ %} **
<li><a href="{%url 'apppost:study_section' '1' '1' %}">{{minsection.0}}</a></li>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/119309.html