ajax通信でpythonファイルを実行したい
djangoでwebアプリケーションを作成中に出たエラーについてです。
簡単なHTML,CSSの実装を終え、pythonファイルの実行に移ろうと思い、調べた結果ajax通信を使うのが良いということだったので見様見真似で実装を試みました。
発生している問題・エラーメッセージ
'website' is not a registered namespace
該当のソースコード
HTML/base.html
1{% load static %} 2<!doctype HTML> 3<html> 4 <head> 5 <link rel="stylesheet" href="{% static 'main.css' %}"> 6 </head> 7 <body> 8 {% include "_navbar.html" %} 9 {% block main %} 10 コンテンツがありません 11 {% endblock %} 12 <button type="button" onclick="clickBtn()">判定</button><br> 13 <input type="text" size="50" id="input_form"><br> 14 15 <script> 16 function clickBtn() { 17 var txt = document.getElementById("input_form").value; 18 19 $.ajax({ 20 url: "{% url 'website:call_sample' %}", 21 method: 'GET', 22 data: {"input_data": txt}, 23 dataType: "text", 24 beforeSend: function(xhr, settings) { 25 if (!csrfSafeMethod(settings.type) && !this.crossDomain) { 26 xhr.setRequestHeader("X-CSRFToken", csrf_token); 27 } 28 }, 29 error: function(xhr, status, error) { 30 console.log("error") 31 } 32 }) 33 .done(function(data) { 34 console.log("Success"); 35 }); 36 37 function getCookie(name) { 38 var cookieValue = null; 39 if (document.cookie && document.cookie !== '') { 40 var cookies = document.cookie.split(';'); 41 for (var i = 0; i < cookies.length; i++) { 42 var cookie = jQuery.trim(cookies[i]); 43 if (cookie.substring(0, name.length + 1) === (name + '=')) { 44 cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); 45 break; 46 } 47 } 48 } 49 return cookieValue; 50 } 51 52 // ヘッダにcsrf_tokenを付与する関数 53 function csrfSafeMethod(method) { 54 return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); 55 }; 56 } 57 58 </script> 59 {% include "_footer.html" %} 60 </body> 61</html>
pyhton/views.py
1from django.views.generic import TemplateView 2from django.shortcuts import render 3from django.http import HttpResponse 4from .application import sample 5 6class IndexView(TemplateView): 7 template_name ="index.html" 8 9 def get_context_data(self): 10 ctxt = super().get_context_data() 11 ctxt["username"] = "Narimi" 12 return ctxt 13 14class AboutView(TemplateView): 15 template_name ="about.html" 16 17 def get_context_data(self): 18 ctxt = super().get_context_data() 19 ctxt["num_services"] = 12345678 20 ctxt["skills"] = [ 21 "Python", 22 "HTML", 23 "Javascript", 24 "Java", 25 ] 26 return ctxt 27 28def call_sample(req): 29 if req.method == 'GET': 30 sample.write_sistem(req.GET.get("input_data")) 31 return HttpResponse()
python/sample.py
1def write_sistem(): 2 matrix = [ 3 [-1, -1, 1 ,0, 1, 1, 1, 1], 4 [-1, 0, 0, 0, 1, 0, 0, 0], 5 [1, 1, 1, 1, 1, 0, 0, 0] 6 ] 7 8 for i in range(len(matrix)): 9 for j in range(len(matrix[0])): 10 if(matrix[i][j] == 1): 11 if(j == len(matrix[0]) - 1): 12 print('h') 13 else: 14 print('h', end='') 15 if(matrix[i][j] == 0): 16 if(j == len(matrix[0]) - 1): 17 print('r') 18 else: 19 print('r', end='') 20 if(matrix[i][j] == -1): 21 if(j == len(matrix[0]) - 1): 22 print(' ') 23 else: 24 print(' ', end='') 25 26
他、必要なファイル等あればコメントお願いします。
補足情報
まだまだ勉強中の初心者なので至らない点は多々あるかと思いますが、よろしくお願いいたします。
HTML,CSS,javascript,Java,Cなどは一通り学習しました。
回答1件
あなたの回答
tips
プレビュー