进入index就报错,提示要输入参数
进入index就报错
In template C:\project1.9.8\Mxonline\users\templates\blog\index.html, error at line 14
Reverse for 'article_page' with arguments '('',)' and keyword arguments '{}' not found. 1 pattern(s) tried: [u'blog/article/(?P<article_id>[0-9]+)$']
4
<meta charset="utf-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6
<title>Examples</title>
7
<meta name="description" content="">
8
<meta name="keywords" content="">
9
<link href="" rel="stylesheet">
10
</head>
11
<body>
12
<h1><a href="">新文章</a></h1>
13
{% for a in article %}
14
<a href="{% url 'blog:article_page' article.id %}">{{ a.title }} </a>
15
<br>
16
{% endfor %}