主要。html 、store.html 画像 、views.py 画像 url.py 画像私は Django と python を使用して e.com Web サイトを構築しています.. main.html にはほとんど問題はありません。 行き詰まったエラー画像
'''テンプレートのレンダリング中にエラーが発生しました テンプレート C:\Users\vinay\Documents\project\ecom\store\templates\store\main.html の 16 行目でエラーが発生しました
'' のリバースが見つかりません。'' は有効なビュー関数またはパターン名ではありません。6
<head>
7 <title>Ecom</title>
8
9 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
10
11 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
12
13 <link rel="stylesheet" type="text/css" href="{% static 'css/main.css' %}">
14
15 <script type="text/javascript">
16 var user = '{{request.user}}'
17
18 function getToken(name) {
19 var cookieValue = null;
20 if (document.cookie && document.cookie !== '') {
21 var cookies = document.cookie.split(';');
22 for (var i = 0; i < cookies.length; i++) {
23 var cookie = cookies[i].trim();
24 // Does this cookie string begin with the name we want?
25 if (cookie.substring(0, name.length + 1) === (name + '=')) {
26 cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
'''